forked from SofiaCPP/IPL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
54 lines (42 loc) · 1.14 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '{build}'
image:
- Visual Studio 2015
- Ubuntu
environment:
matrix:
-
enabled_on_pr: yes
configuration:
- Debug
- Release
build:
project: JSImpl/solution/JSImpl.sln
verbosity: minimal
parallel: true
for:
-
matrix:
only:
- image: Ubuntu
build_script:
- make -C $APPVEYOR_BUILD_FOLDER/JSImpl/solution -j config=`echo ${CONFIGURATION} | sed -e 'y/DR/dr/'`64
test_script:
- '$APPVEYOR_BUILD_FOLDER/JSImpl/build/bin/$CONFIGURATION/Test'
after_test:
- curl -F "file=@$APPVEYOR_BUILD_FOLDER/test_detail.xml" "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"
before_test:
- appveyor AddMessage "Running Tests"
- appveyor SetVariable -Name "GTEST_OUTPUT" -Value "xml"
- echo Running tests for %APPVEYOR_JOB_ID%
- sh: echo Running tests for $APPVEYOR_JOB_ID
test_script:
- '%APPVEYOR_BUILD_FOLDER%/JSImpl/build/bin/%CONFIGURATION%/Test.exe'
after_test:
- curl -F "file=@%APPVEYOR_BUILD_FOLDER%/test_detail.xml" https://ci.appveyor.com/api/testresults/junit/%APPVEYOR_JOB_ID%
clone_depth: 1
skip_commits:
files:
- '**/*.md'
branches:
except:
- gh-pages