OLD | NEW |
(Empty) | |
| 1 version: 1.0.{build} |
| 2 pull_requests: |
| 3 do_not_increment_build_number: true |
| 4 skip_tags: true |
| 5 image: Visual Studio 2017 |
| 6 clone_depth: 20 |
| 7 configuration: |
| 8 - release |
| 9 - debug |
| 10 |
| 11 environment: |
| 12 PYTHON3: "C:\\Python34" |
| 13 PIP3: "%PYTHON3%\\Scripts\\pip" |
| 14 PYTHONPATH: "%APPDATA%\\python\\python34\\site-packages" |
| 15 matrix: |
| 16 - MSBUILD_PLATFORM: x64 |
| 17 BITNESS: 64 |
| 18 - MSBUILD_PLATFORM: Win32 |
| 19 BITNESS: 32 |
| 20 |
| 21 init: |
| 22 - cmd: echo %Platform% %Configuration% |
| 23 install: |
| 24 - cmd: cmd /C %PIP3% install -q --user meson |
| 25 before_build: |
| 26 - cmd: ensure_dependencies.py |
| 27 |
| 28 build_script: |
| 29 - cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Au
xiliary\Build\vcvars%BITNESS%.bat" |
| 30 - cmd: py -3 %APPDATA%\python\Scripts\meson.py -Dnative=true --buildtype %Config
uration% build --backend=vs2017 |
| 31 - cmd: msbuild build\adblockpluscore.sln /m /p:Configuration=%Configuration% /p:
Platform=%MSBUILD_PLATFORM% |
| 32 test_script: |
| 33 - cmd: build\abptest.exe --gtest_output=xml:tests.xml |
| 34 after_test: |
| 35 - ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testres
ults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\tests.xml)) |
| 36 deploy: off |
OLD | NEW |