See #375. Add AppVeyor config file for Windows CI support

See https://github.com/atom/ci#appveyor
This commit is contained in:
Glavin Wiechert 2015-05-28 14:15:25 -03:00
parent 7eff3387b1
commit 404e42bcf6
1 changed files with 18 additions and 0 deletions

18
appveyor.yml Normal file
View File

@ -0,0 +1,18 @@
version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
init:
- cmd: rd /s /q %CHOCOLATEYINSTALL%
- ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
install:
- cinst atom
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm install"
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm test --one --path %LOCALAPPDATA%/atom/bin/atom.cmd"