| 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 |