forked from cburstedde/p4est
-
Notifications
You must be signed in to change notification settings - Fork 0
242 lines (195 loc) · 6.18 KB
/
ci_cmake.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
name: CI for CMake
on:
push:
paths:
- sc
- "**/CMakeLists.txt"
- "**.cmake"
- "**.cmake.in"
- "**.c"
- "**.h"
- "**.h.in"
- ".github/workflows/ci_cmake.yml"
pull_request:
release:
types: [published]
env:
CTEST_PARALLEL_LEVEL: 4
CMAKE_BUILD_PARALLEL_LEVEL: 4
CTEST_NO_TESTS_ACTION: "error"
jobs:
linux:
runs-on: ubuntu-22.04
name: CMake build on Linux
timeout-minutes: 60
strategy:
matrix:
cc: [gcc-9, gcc-10, gcc-11, gcc-12, gcc-13]
shared: [false]
mpi: [mpich]
include:
- cc: gcc
shared: true
mpi: mpich
- cc: gcc
shared: false
mpi: openmpi
env:
CC: ${{ matrix.cc }}
steps:
- uses: actions/checkout@v4
name: Checkout source code
- name: Install system dependencies
run: |
sudo apt-get update -yq
sudo apt-get install -yq --no-install-recommends zlib1g-dev lib${{ matrix.mpi }}-dev
- name: CMake configure
run: >-
cmake --preset default
--install-prefix=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
- name: CMake build
run: cmake --build --preset default
- name: CMake self-tests
run: ctest --preset default
- name: install p4est CMake package
run: cmake --install build
# standalone examples tests that CMake packaging is correct
- name: CMake configure examples
run: >-
cmake -B example/build -S example
-DCMAKE_PREFIX_PATH:PATH=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
- name: CMake build examples
run: cmake --build example/build
- name: Create package
if: github.event.action == 'published'
run: cpack --config build/CPackConfig.cmake
- name: Upload package
if: github.event.action == 'published'
uses: actions/upload-artifact@v4
with:
name: linux_binary_archive-${{ matrix.cc }}-${{ matrix.mpi }}-shared-${{ matrix.shared }}
path: build/package
- name: Upload log files
if: always()
uses: actions/upload-artifact@v4
with:
name: linux_cmake_log-${{ matrix.cc }}-${{ matrix.mpi }}-shared-${{ matrix.shared }}
path: |
./build/CMakeFiles/CMakeConfigureLog.yaml
./build/Testing/Temporary/LastTest.log
mac:
# macos-14 is to use Apple Silicon hardware
# https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
runs-on: macos-14
name: CMake build on MacOS
timeout-minutes: 60
strategy:
matrix:
cc: [clang, gcc-13]
shared: [false]
include:
- cc: clang
shared: true
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
CC: ${{ matrix.cc }}
steps:
- uses: actions/checkout@v4
name: Checkout source code
- name: Install system dependencies
run: brew install open-mpi
- name: CMake configure
run: >-
cmake --preset default
--install-prefix=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
- name: CMake build
run: cmake --build --preset default
- name: CMake self-tests
run: ctest --preset default
- name: install p4est CMake package
run: cmake --install build
- name: CMake configure examples
run: >-
cmake -B example/build -S example
-DCMAKE_PREFIX_PATH:PATH=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
- name: CMake build examples
run: cmake --build example/build
- name: Create package
if: github.event.action == 'published'
run: cpack --config build/CPackConfig.cmake
- name: Upload package
if: github.event.action == 'published'
uses: actions/upload-artifact@v4
with:
name: mac_binary_archive-${{ matrix.cc }}-shared-${{ matrix.shared }}
path: build/package
- name: Upload log files
if: always()
uses: actions/upload-artifact@v4
with:
name: mac_cmake_log-${{ matrix.cc }}-shared-${{ matrix.shared }}
path: |
./build/CMakeFiles/CMakeConfigureLog.yaml
./build/Testing/Temporary/LastTest.log
windows:
runs-on: windows-latest
name: CMake build on Windows
timeout-minutes: 60
strategy:
matrix:
shared: [false]
env:
CMAKE_GENERATOR: "MinGW Makefiles"
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
mingw-w64-x86_64-zlib
- name: Put MSYS2_MinGW64 on PATH
run: echo "${{ runner.temp }}/msys64/mingw64/bin/" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- uses: actions/checkout@v4
name: Checkout source code
# Windows MPI is shaky in general on GitHub Actions, so we don't use it
- name: CMake configure without MPI
run: >-
cmake --preset default
-Dmpi:BOOL=no
--install-prefix=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
-DZLIB_ROOT:PATH=${{ runner.temp }}/msys64/mingw64/
- name: CMake build
run: cmake --build --preset default
- name: CMake self-tests
run: ctest --preset default
- name: install p4est CMake package
run: cmake --install build
- name: CMake configure examples
run: >-
cmake -B example/build -S example
-DCMAKE_PREFIX_PATH:PATH=${{ runner.temp }}
-DBUILD_SHARED_LIBS:BOOL=${{ matrix.shared }}
-DZLIB_ROOT:PATH=${{ runner.temp }}/msys64/mingw64/
- name: CMake build examples
run: cmake --build example/build
- name: Create package
if: github.event.action == 'published'
run: cpack --config build/CPackConfig.cmake
- name: Upload package
if: github.event.action == 'published'
uses: actions/upload-artifact@v4
with:
name: windows_binary_archive
path: build/package
- name: Upload log files
if: always()
uses: actions/upload-artifact@v4
with:
name: windows_cmake_log
path: |
./build/CMakeFiles/CMakeConfigureLog.yaml
./build/Testing/Temporary/LastTest.log