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

Unified 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.
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
Index: appveyor.yml
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0d200be115e026cc4996569e8b3b623c7cd2ee9c
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,34 @@
+version: 1.0.{build}
+pull_requests:
+ do_not_increment_build_number: true
+skip_tags: true
+image: Visual Studio 2015
+configuration:
+- Release
+- Debug
+platform:
+- x64
+- Win32
+clone_depth: 1
+init:
+- cmd: echo %Platform% %Configuration%
+install:
+- cmd: .appveyor\prepare-prebuilt-v8.cmd
+- cmd: ensure_dependencies.py
+environment:
+ 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
+before_build:
+- cmd: set "GYP_DEFINES=libv8_include_dir=third_party/prebuilt-v8/include libv8_lib_dir=../../third_party/prebuilt-v8 libv8_no_build=true"
+- cmd: createsolution.bat
+- cmd: >-
+ if "%Platform%"=="Win32" set arch="ia32"
+
+ if "%Platform%"=="x64" set arch="x64"
+
+build_script:
+- cmd: msbuild "build/%arch%/libadblockplus.sln" /m /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
+test_script:
+- cmd: build\%arch%\%Configuration%\tests.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

Powered by Google App Engine
This is Rietveld