Appveyor example now validates. Closes #2641.
This commit is contained in:
parent
5d9c72630a
commit
708cdea861
|
@ -52,6 +52,7 @@ your best bet. Here's a sample `yml` file for use with that.
|
||||||
```yaml
|
```yaml
|
||||||
os: Visual Studio 2015
|
os: Visual Studio 2015
|
||||||
|
|
||||||
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- arch: x86
|
- arch: x86
|
||||||
compiler: msvc2010
|
compiler: msvc2010
|
||||||
|
@ -66,10 +67,10 @@ platform:
|
||||||
install:
|
install:
|
||||||
# Use the x86 python only when building for x86 for the cpython tests.
|
# Use the x86 python only when building for x86 for the cpython tests.
|
||||||
# For all other archs (including, say, arm), use the x64 python.
|
# For all other archs (including, say, arm), use the x64 python.
|
||||||
- ps: (new-object net.webclient).DownloadFile('https://dl.dropboxusercontent.com/u/37517477/ninja.exe', 'C:\projects\meson\ninja.exe')
|
- ps: (new-object net.webclient).DownloadFile('https://www.dropbox.com/s/cyghxjrvgplu7sy/ninja.exe?dl=1', 'C:\projects\meson\ninja.exe')
|
||||||
- cmd: if %arch%==x86 (set MESON_PYTHON_PATH=C:\python34) else (set MESON_PYTHON_PATH=C:\python34-x64)
|
- cmd: if %arch%==x86 (set MESON_PYTHON_PATH=C:\python34) else (set MESON_PYTHON_PATH=C:\python34-x64)
|
||||||
- cmd: echo Using Python at %MESON_PYTHON_PATH%
|
- cmd: echo Using Python at %MESON_PYTHON_PATH%
|
||||||
- cmd: %MESON_PYTHON_PATH%\pip install meson
|
- cmd: "%MESON_PYTHON_PATH%\\pip install meson"
|
||||||
- cmd: if %compiler%==msvc2010 ( call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %arch% )
|
- cmd: if %compiler%==msvc2010 ( call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %arch% )
|
||||||
- cmd: if %compiler%==msvc2015 ( call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %arch% )
|
- cmd: if %compiler%==msvc2015 ( call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %arch% )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue