Skip to content
This repository was archived by the owner on Sep 8, 2018. It is now read-only.

Commit 44232e3

Browse files
committed
Enable Windows builds on AppVeyor
1 parent 1f73deb commit 44232e3

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Git Diff package [![Build Status](https://travis-ci.org/atom/git-diff.svg?branch=master)](https://travis-ci.org/atom/git-diff)
1+
# Git Diff package
2+
[![OS X Build Status](https://travis-ci.org/atom/git-diff.svg?branch=master)](https://travis-ci.org/atom/git-diff) [![Windows Build Status](https://ci.appveyor.com/api/projects/status/9auj52cs0vso66nv/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/git-diff/branch/master) [![Dependency Status](https://david-dm.org/atom/git-diff.svg)](https://david-dm.org/atom/git-diff)
23

3-
Marks lines in the editor gutter that have been added, edited, or deleted since
4-
the last commit.
4+
Marks lines in the editor gutter that have been added, edited, or deleted since the last commit.
55

6-
* `alt-g up` to move the cursor to the previous diff in the editor
7-
* `alt-g down` to move the cursor to the next diff in the editor
6+
* <kbd>alt-g up</kbd> to move the cursor to the previous diff in the editor
7+
* <kbd>alt-g down</kbd> to move the cursor to the next diff in the editor
88

99
![](https://f.cloud.github.com/assets/671378/2241519/04791a24-9cd6-11e3-9a12-164cabe81d58.png)

appveyor.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: "{build}"
2+
3+
os: Windows Server 2012 R2
4+
5+
install:
6+
- choco install atom -y
7+
- cd %APPVEYOR_BUILD_FOLDER%
8+
- "%LOCALAPPDATA%/atom/bin/apm clean"
9+
- "%LOCALAPPDATA%/atom/bin/apm install"
10+
11+
build_script:
12+
- cd %APPVEYOR_BUILD_FOLDER%
13+
- "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd"
14+
15+
test: off
16+
17+
deploy: off

0 commit comments

Comments
 (0)