Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: appveyor.yml

Issue 29748587: Issue 6063, 6531 - Update V8 to 6.5.254.41, use C++14 and NDK-r16b (Closed) Base URL: https://github.com/adblockplus/libadblockplus@549616e865707b89e95659d55c70e22d63130ce5
Left Patch Set: update CI Created April 18, 2018, 3:27 p.m.
Right Patch Set: fix and simplify build for Windows Created April 18, 2018, 6:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « android-v8-options.gypi ('k') | build-v8.cmd » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 2015 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:
(...skipping 10 matching lines...) Expand all
26 26
27 if "%Platform%"=="x64" set arch="x64" 27 if "%Platform%"=="x64" set arch="x64"
28 28
29 build_script: 29 build_script:
30 - cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:" C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" 30 - cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:" C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
31 test_script: 31 test_script:
32 - cmd: build\%arch%\%Configuration%\tests.exe --gtest_output=xml:tests.xml 32 - cmd: build\%arch%\%Configuration%\tests.exe --gtest_output=xml:tests.xml
33 after_test: 33 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)) 34 - 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 35 deploy: off
LEFTRIGHT

Powered by Google App Engine
This is Rietveld