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

Unified 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.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | compiled/String.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appveyor.yml
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1b40a49d699b18b5919138451e2b706646d39170
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,36 @@
+version: 1.0.{build}
+pull_requests:
+ do_not_increment_build_number: true
+skip_tags: true
+image: Visual Studio 2017
+clone_depth: 20
+configuration:
+- release
+- debug
+
+environment:
+ PYTHON3: "C:\\Python34"
+ PIP3: "%PYTHON3%\\Scripts\\pip"
+ PYTHONPATH: "%APPDATA%\\python\\python34\\site-packages"
+ matrix:
+ - MSBUILD_PLATFORM: x64
+ BITNESS: 64
+ - MSBUILD_PLATFORM: Win32
+ BITNESS: 32
+
+init:
+- cmd: echo %Platform% %Configuration%
+install:
+- cmd: cmd /C %PIP3% install -q --user meson
+before_build:
+- cmd: ensure_dependencies.py
+
+build_script:
+- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars%BITNESS%.bat"
+- cmd: py -3 %APPDATA%\python\Scripts\meson.py -Dnative=true --buildtype %Configuration% build --backend=vs2017
+- cmd: msbuild build\adblockpluscore.sln /m /p:Configuration=%Configuration% /p:Platform=%MSBUILD_PLATFORM%
+test_script:
+- cmd: build\abptest.exe --gtest_output=xml:tests.xml
+after_test:
+- ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\tests.xml))
+deploy: off
« 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