diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-13 21:47:34 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-13 21:53:36 +0300 |
commit | 539e44677e0609ccdb114e81140055d46bd54b22 (patch) | |
tree | ba2e5467b03c9b3b5e8ea5f9f48a156a52636ee4 | |
parent | 5384a203f3d68f460e1075889ce02a6c5acdfe4f (diff) | |
download | meson-539e44677e0609ccdb114e81140055d46bd54b22.zip meson-539e44677e0609ccdb114e81140055d46bd54b22.tar.gz meson-539e44677e0609ccdb114e81140055d46bd54b22.tar.bz2 |
Added Appveyor config file.
-rw-r--r-- | .appveyor.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..81b9b6c --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,16 @@ +version: 1.0.{build} +os: Visual Studio 2015 +platform: + - x86 +branches: + only: + - master +install: + - ps: (new-object net.webclient).DownloadFile('https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi', 'python-3.4.4.msi') + - ps: msiexec /i python-3.4.4.msi /quiet /qn /norestart + - cmd: copy c:\python34\python.exe c:\python34\python3.exe + - ps: (new-object net.webclient).DownloadFile('https://dl.dropboxusercontent.com/u/37517477/ninja.exe', 'ninja.exe') +build_script: + - cmd: echo No build step. +test_script: + - cmd: c:\python34\python3 run_tests.py --backend=ninja |