Skip to content

Commit 91c9176

Browse files
Trying to improve time of the memory check job
1 parent 610d314 commit 91c9176

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ jobs:
166166
memory-check:
167167
runs-on: ubuntu-latest
168168
env:
169-
BUILD_TYPE: Debug
170-
FFLAGS: "-fopenmp"
169+
BUILD_TYPE: Release
171170

172171
steps:
173172

@@ -177,10 +176,10 @@ jobs:
177176
- name: Install ninja-build tool
178177
uses: seanmiddleditch/gha-setup-ninja@16b940825621068d98711680b6c3ff92201f8fc0 # v3
179178

180-
- name: Install Valgrind
179+
- name: Install APT packages
181180
run: |
182181
sudo apt update
183-
sudo apt install -y valgrind
182+
sudo apt install -y cmake valgrind gfortran
184183
185184
- name: Configure CMake
186185
run: >
@@ -202,5 +201,5 @@ jobs:
202201
- name: Test
203202
working-directory: ${{github.workspace}}/build
204203
run: |
205-
ctest -D ExperimentalMemCheck
204+
ctest -D ExperimentalMemCheck -j2
206205
ctest -D ExperimentalSubmit

0 commit comments

Comments
 (0)