OLD | NEW |
1 version: 1.0.{build} | 1 version: 1.0.{build} |
2 pull_requests: | 2 pull_requests: |
3 do_not_increment_build_number: true | 3 do_not_increment_build_number: true |
4 skip_tags: true | 4 skip_tags: true |
5 image: Visual Studio 2017 | 5 image: Visual Studio 2017 |
6 configuration: | 6 configuration: |
7 - Release | 7 - Release |
8 - Debug | 8 - Debug |
9 platform: | 9 platform: |
10 - x64 | 10 - x64 |
11 - Win32 | 11 - Win32 |
12 clone_depth: 1 | 12 clone_depth: 1 |
13 init: | 13 init: |
14 - cmd: echo %Platform% %Configuration% | 14 - cmd: echo %Platform% %Configuration% |
15 install: | 15 install: |
16 - cmd: .appveyor\prepare-prebuilt-v8.cmd | 16 - cmd: .appveyor\prepare-prebuilt-v8.cmd |
17 - C:\msys64\usr\bin\bash -lc "cd ${APPVEYOR_BUILD_FOLDER}; sed -i '/third_party\
/v8/d' dependencies" | |
18 - cmd: ensure_dependencies.py | 17 - cmd: ensure_dependencies.py |
19 environment: | 18 environment: |
20 URL_PREFIX: https://v8.eyeofiles.com/v8-3cdaf01c4043e19965efc5ef48df5314960b89
8f/ | 19 URL_PREFIX: https://v8.eyeofiles.com/v8-4fc9a2fe7f8a7ef1e7966185b39b3b54179266
9a/ |
21 before_build: | 20 before_build: |
22 - cmd: set "GYP_DEFINES=libv8_include_dir=third_party/prebuilt-v8/include libv8_
lib_dir=../../third_party/prebuilt-v8 libv8_no_build=true" | 21 - cmd: set "GYP_DEFINES=libv8_include_dir=third_party/prebuilt-v8/include libv8_
lib_dir=../../third_party/prebuilt-v8" |
23 - cmd: createsolution.bat | 22 - cmd: createsolution.bat |
24 - cmd: >- | 23 - cmd: >- |
25 if "%Platform%"=="Win32" set arch="ia32" | 24 if "%Platform%"=="Win32" set arch="ia32" |
26 | 25 |
27 if "%Platform%"=="x64" set arch="x64" | 26 if "%Platform%"=="x64" set arch="x64" |
28 | 27 |
29 build_script: | 28 build_script: |
30 - cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:"
C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" | 29 - cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:"
C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" |
31 test_script: | 30 test_script: |
32 - cmd: build\%arch%\%Configuration%\tests.exe --gtest_output=xml:tests.xml | 31 - cmd: build\%arch%\%Configuration%\tests.exe --gtest_output=xml:tests.xml |
33 after_test: | 32 after_test: |
34 - ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testres
ults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\tests.xml)) | 33 - ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testres
ults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\tests.xml)) |
35 deploy: off | 34 deploy: off |
OLD | NEW |