-
Notifications
You must be signed in to change notification settings - Fork 24
120 lines (97 loc) · 2.45 KB
/
build.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: build and test SOLL
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_and_test_gcc_debug:
runs-on: ubuntu-latest
container:
image: secondstate/soll:latest
steps:
- uses: actions/checkout@v2
- name: Setup build folder
run: |
rm -rf build
mkdir -p build
- name: Build SOLL using g++
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DSOLL_INCLUDE_TESTS=true ..
make -j2
- name: Test SOLL
run: |
cd build
ctest
build_and_run_soll_runtime_test:
runs-on: ubuntu-latest
container:
image: secondstate/soll:runtime-test
steps:
- uses: actions/checkout@v2
- name: Setup build folder
run: |
rm -rf build
mkdir -p build
- name: Build SOLL using g++
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DSOLL_INCLUDE_TESTS=true -DSOLL_RUNTIME_TESTS=true ..
make -j2
- name: SOLL Build Wasm
run: |
cd test/soll-runtime-test
bash compile.sh 2> /dev/null
- name: SOLL Runtime Test
run: |
cd test/soll-runtime-test
bash runtest.sh
build_and_test_gcc_release:
runs-on: ubuntu-latest
container:
image: secondstate/soll:latest
steps:
- uses: actions/checkout@v2
- name: Setup build folder
run: |
rm -rf build
mkdir -p build
- name: Build SOLL using g++
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DSOLL_INCLUDE_TESTS=true ..
make -j2
- name: Test SOLL
run: |
cd build
ctest
build_and_test_gcc_debug_coverage:
runs-on: ubuntu-latest
container:
image: secondstate/soll:latest
steps:
- uses: actions/checkout@v2
- name: Install curl and gcovr
run: |
apt update
apt install -y curl gcovr
- name: Setup build folder
run: |
rm -rf build
mkdir -p build
- name: Build SOLL using g++
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DSOLL_INCLUDE_TESTS=true -DSOLL_COVERAGE=true ..
make -j2 codecov
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./build/codecov.xml
name: codecov-soll
fail_ci_if_error: true
path_to_write_report: ./build/codecov_report.gz