-
Notifications
You must be signed in to change notification settings - Fork 24
142 lines (128 loc) · 3.84 KB
/
valgrind.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: Valgrind Tests
on:
pull_request:
branches:
- stable
- unstable
push:
branches:
- unstable
defaults:
run:
shell: bash
jobs:
pre_job:
# continue-on-error: true # Uncomment once integration is finished
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
# All of these options are optional, so you can remove them if you are happy with the defaults
cancel_others: 'true'
concurrent_skipping: 'same_content'
skip_after_successful_duplicate: 'true'
paths_ignore: '["**/README.md", "**/docs/**"]'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
valgrind:
name: "Valgrind"
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- {
name: "Default settings",
os: ubuntu-latest,
build_type: "Debug",
cc: "gcc-9",
cxx: "g++-9",
generators: "Ninja",
target: "all",
options: ""
}
- {
name: "Hard steal",
os: ubuntu-latest,
build_type: "Debug",
cc: "gcc-9",
cxx: "g++-9",
generators: "Ninja",
target: "all",
options: "-DENABLE_CARMA_HARD_STEAL=ON"
}
- {
name: "Soft steal",
os: ubuntu-latest,
build_type: "Debug",
cc: "gcc-9",
cxx: "g++-9",
generators: "Ninja",
target: "all",
options: "-DENABLE_CARMA_HARD_STEAL=ON"
}
- {
name: "Not own data",
os: ubuntu-latest,
build_type: "Debug",
cc: "gcc-9",
cxx: "g++-9",
generators: "Ninja",
target: "all",
options: "-DENABLE_CARMA_DONT_REQUIRE_OWNDATA=ON"
}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Print env
run: |
echo github.event.action: ${{ github.event.action }}
echo github.event_name: ${{ github.event_name }}
- name: Install dependencies on ubuntu
run: |
python -m pip install --upgrade cmake
sudo apt install -y valgrind
ninja --version
cmake --version
- name: Install python pacakges
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install numpy pytest pytest-valgrind
- name: Configure
run: |
mkdir build
cd build
export PY_CMD=$(python -c 'import sys; print(sys.executable)')
cmake \
${{ matrix.config.options }} \
-DCARMA_BUILD_TESTS=ON \
-DVALGRIND_TEST_WRAPPER=ON \
-DCMAKE_C_COMPILER=${{ matrix.config.cc }} \
-DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} \
-DCMAKE_INSTALL_PREFIX:PATH=. \
-DPython3_EXECUTABLE=${PY_CMD} \
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
..
- name: Build
run: |
cd build
cmake \
--build . \
--target ${{ matrix.config.target }} \
--config ${{ matrix.config.build_type }}
- name: Test
run: |
cd build
ctest \
--verbose --rerun-failed --output-on-failure \
-C ${{ matrix.config.build_type }}