Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
23 lines
568 B
YAML
23 lines
568 B
YAML
os: Visual Studio 2017
|
|
platform:
|
|
- x86
|
|
environment:
|
|
matrix:
|
|
- ARCH: x86
|
|
PYTHON: "C:\\Python35"
|
|
- ARCH: x64
|
|
PYTHON: "C:\\Python35-x64"
|
|
skip_branch_with_pr: true
|
|
install:
|
|
- git submodule update --init --recursive
|
|
- set PATH=%cd%;%PYTHON%;%PYTHON%\Scripts;%PATH%
|
|
- pip install meson==0.50.0 ninja
|
|
- call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %ARCH%
|
|
build_script:
|
|
- meson -Dwerror=false --backend=ninja --prefix=%cd% build
|
|
- where link
|
|
- ninja -C build
|
|
test_script:
|
|
- ninja -C build test
|
|
after_build:
|
|
- ninja -C build install |