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

Side by Side Diff: appveyor.yml

Issue 29498563: Issue 5133 - add CI for libadblockplus (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created July 26, 2017, 12:31 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 version: 1.0.{build}
2 pull_requests:
3 do_not_increment_build_number: true
4 skip_tags: true
5 image: Visual Studio 2015
6 configuration:
7 - Release
8 - Debug
9 platform:
10 - x64
11 - Win32
12 clone_depth: 1
13 init:
14 - cmd: echo %Platform% %Configuration%
15 install:
16 - cmd: .appveyor\prepare-prebuilt-v8.cmd
17 - cmd: ensure_dependencies.py
18 environment:
19 URL_PREFIX: https://github.com/xxxz/v8-binaries2/releases/download/v1/
sergei 2017/07/26 12:52:52 This URL will be changed after hub:2317 and I will
20 before_build:
21 - cmd: set "GYP_DEFINES=libv8_include_dir=third_party/prebuilt-v8/include libv8_ lib_dir=../../third_party/prebuilt-v8 libv8_no_build=true"
22 - cmd: createsolution.bat
23 - cmd: >-
24 if "%Platform%"=="Win32" set arch="ia32"
25
26 if "%Platform%"=="x64" set arch="x64"
27
28 build_script:
29 - cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:" C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
30 test_script:
31 - cmd: build\%arch%\%Configuration%\tests.exe --gtest_output=xml:tests.xml
32 after_test:
33 - ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testres ults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\tests.xml))
34 deploy: off
OLDNEW

Powered by Google App Engine
This is Rietveld