From 404e42bcf603d10b5b491fbe403d5b0168a038b1 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Thu, 28 May 2015 14:15:25 -0300 Subject: [PATCH] See #375. Add AppVeyor config file for Windows CI support See https://github.com/atom/ci#appveyor --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d3ae963 --- /dev/null +++ b/appveyor.yml @@ -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" \ No newline at end of file