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

Side by Side Diff: appveyor.yml

Issue 29716557: Issue 6220 - add appveyor configuration for adblockpluscore [emscripten] (Closed) Base URL: github.com:adblockplus/adblockpluscore
Patch Set: Created March 7, 2018, 10:32 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | compiled/String.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
OLDNEW
« no previous file with comments | « no previous file | compiled/String.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld