-
Notifications
You must be signed in to change notification settings - Fork 36
188 lines (160 loc) · 4.94 KB
/
ci.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: CI for Autotools/Linux
on:
push:
paths-ignore:
- "**/CMakeLists.txt"
- "**.cmake"
- "**.cmake.in"
- "cmake/**"
- "CMake*"
- ".github/workflows/ci_cmake.yml"
- ".github/workflows/ci_darwin.yml"
- ".github/workflows/composite-cmake/**"
pull_request:
jobs:
linux-multi:
runs-on: ubuntu-latest
name: Autotools build on Linux
steps:
- name: Install system dependencies
run: |
sudo apt-get update -yq
sudo apt-get install -yq --no-install-recommends \
zlib1g-dev libmpich-dev mpich
- name: Checkout source code
uses: actions/checkout@v3
- name: Run bootstrap script
run: ./bootstrap
- name: Make check with MPI and debug, without shared
shell: bash
run: |
DIR="checkMPIdebug_shared" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-mpi --enable-debug --disable-shared \
CFLAGS="-O0 -g -Wall -Wextra -Wno-unused-parameter"
make -j V=0
make -j check V=0
- name: Make check with MPI, without debug
shell: bash
run: |
DIR="checkMPI" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-mpi CFLAGS="-O2"
make -j V=0
make -j check V=0
- name: Make check without MPI, with debug
shell: bash
run: |
DIR="checkdebug" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-debug CFLAGS="-O0 -g -Wall -Wno-uninitialized"
make -j V=0
make -j check V=0
- name: Install JSON parser library halfway through CI run
run: |
sudo apt-get install -yq --no-install-recommends \
libjansson-dev
- name: Make check with MPI, debug and C++ compiler
shell: bash
run: |
DIR="checkMPIdebugCXX" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-mpi --enable-debug CFLAGS="-O0" CC=mpicxx
make -j V=0
make -j check V=0
- name: Make check with OpenMP, MPI, debug
shell: bash
run: |
DIR="checkOpenMPMPIdebug" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-openmp="-fopenmp" --enable-mpi \
--enable-debug CFLAGS="-O0"
make -j V=0
make -j check V=0
- name: Make distcheck
shell: bash
run: |
DIR="distcheck" && mkdir -p "$DIR" && cd "$DIR"
../configure
make -j distcheck V=0
- name: Upload log files
if: always()
uses: actions/upload-artifact@v3
with:
name: linux_multi_log
path: |
./**/config.log
./**/test-suite.log
./**/test/*.log
linux-valgrind:
runs-on: ubuntu-latest
name: Autotools with valgrind
steps:
- name: Install system dependencies
run: |
sudo apt-get update -yq
sudo apt-get install -yq --no-install-recommends \
zlib1g-dev libmpich-dev mpich valgrind
- name: Checkout source code
uses: actions/checkout@v3
- name: Run bootstrap script
run: ./bootstrap
- name: Make check with MPI, debug and valgrind, without shared
shell: bash
run: |
DIR="checkMPIdebug_valgrind" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-mpi --enable-debug \
--disable-shared --enable-valgrind \
CFLAGS="-O0 -g -Wall -Wextra -Wno-unused-parameter"
make -j V=0
make -j check V=0
- name: Upload log files
if: always()
uses: actions/upload-artifact@v3
with:
name: linux_valgrind_log
path: |
./**/config.log
./**/test-suite.log
./**/test/*.log
linux-tarball:
runs-on: ubuntu-latest
name: Pack tarball on Linux
steps:
- name: Install system dependencies
run: |
sudo apt-get update -yq
sudo apt-get install -yq --no-install-recommends \
zlib1g-dev libmpich-dev mpich
- name: Checkout source code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Identify version
shell: bash
run: |
git tag
git describe --abbrev=4 --match 'v*'
- name: Run bootstrap script
run: ./bootstrap
- name: Configure and make
shell: bash
run: |
DIR="tarball" && mkdir -p "$DIR" && cd "$DIR"
../configure --enable-mpi --enable-debug \
CFLAGS="-O0 -g -pedantic -Wall -Wextra -Werror \
-Wno-unused-parameter -Wno-builtin-declaration-mismatch \
-Wno-implicit-fallthrough"
make -j V=0
make -j check V=0
make -j distcheck V=0
mv libsc-*.tar.gz ..
- name: Upload tarball
uses: actions/upload-artifact@v3
with:
name: libsc_tarball
path: ./libsc-*.tar.gz
- name: Upload log files
if: always()
uses: actions/upload-artifact@v3
with:
name: linux_tarball_log
path: |
./**/config.log
./**/test-suite.log
./**/test/*.log