-
-
Notifications
You must be signed in to change notification settings - Fork 23
160 lines (118 loc) · 3.03 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
name: ci
env:
CMAKE_TLS_VERIFY: true
HOMEBREW_NO_INSTALL_CLEANUP: 1
CTEST_NO_TESTS_ACTION: error
CTEST_PARALLEL_LEVEL: 4
CMAKE_BUILD_PARALLEL_LEVEL: 4
CMAKE_INSTALL_PREFIX: ~/libs
CMAKE_PREFIX_PATH: ~/libs
on:
push:
paths:
- "**.c"
- "**.cpp"
- "**.f90"
- "**.F90"
- "**/CMakeLists.txt"
- "**.cmake"
- ".github/workflows/**"
- "!memcheck.cmake"
- "!coverage.cmake"
jobs:
core-gcc:
timeout-minutes: 15
strategy:
matrix:
os: [ubuntu-24.04]
shared: [false]
gcc: [12, 13, 14]
include:
- os: ubuntu-24.04
shared: true
gcc: 14
- os: macos-latest
shared: true
gcc: 14
- os: macos-latest
shared: false
gcc: 14
runs-on: ${{ matrix.os }}
env:
FC: gfortran-${{ matrix.gcc }}
steps:
- uses: actions/checkout@v4
- name: GCC (Linux)
if: runner.os == 'Linux'
run: echo "CC=gcc-${{ matrix.gcc }}" >> $GITHUB_ENV
- uses: ./.github/workflows/composite-unix
gcc-old:
timeout-minutes: 15
strategy:
matrix:
shared: [false]
gcc: [9, 10, 11]
runs-on: ubuntu-22.04
env:
CC: gcc-${{ matrix.gcc }}
FC: gfortran-${{ matrix.gcc }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/composite-unix
valgrind-memory:
runs-on: ubuntu-latest
needs: core-gcc
timeout-minutes: 10
steps:
- name: install valgrind
run: |
sudo apt update
sudo apt install --no-install-recommends valgrind libhdf5-dev
- uses: actions/checkout@v4
- run: ctest -Dexclude_label=python -S memcheck.cmake -VV
# issue with python loading writer.inc
linux-coverage:
if: false
needs: core-gcc
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: install hdf5
run: |
sudo apt update
sudo apt install --no-install-recommends libhdf5-dev
- name: install Gcovr
run: pip install gcovr
- run: cmake --preset coverage
- run: cmake --build --parallel --preset coverage
- name: Code coverage
run: cmake --build --parallel --preset run-coverage
- uses: actions/upload-artifact@v4
with:
name: coverage-report-html
path: build-coverage/coverage/
cmake-older:
timeout-minutes: 30
runs-on: ubuntu-latest
strategy:
matrix:
cmake_version: ["3.20.6"]
steps:
- uses: actions/checkout@v4
- name: prereqs
run: |
sudo apt-get update
sudo apt install --no-install-recommends libhdf5-dev
- uses: ./.github/workflows/composite-cmake
- name: configure
run: $CMAKE -Bbuild -DCMAKE_INSTALL_PREFIX:PATH=$(pwd)/build/local
- name: build
run: $CMAKE --build build
- name: test
run: $CTEST --test-dir build
- name: install package
run: $CMAKE --install build