We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e7311 commit 97b1400Copy full SHA for 97b1400
2 files changed
.github/actions/build/action.yml
@@ -16,7 +16,7 @@ runs:
16
export CC=/usr/bin/gcc-13
17
export CXX=/usr/bin/g++-13
18
mkdir build && cd build
19
- cmake -DCMAKE_BUILD_TYPE=Debug -DGMGPOLAR_TEST_COVERAGE=ON ..
+ cmake -B build -DCMAKE_BUILD_TYPE=Debug -DGMGPOLAR_TEST_COVERAGE=ON ..
20
make -j4
21
- name: create build dir archive
22
shell: bash
.github/actions/test/action.yml
@@ -34,9 +34,8 @@ runs:
34
35
# compute code coverage
36
run: |
37
- cd build
38
- cmake --build .
39
- cmake --build . --target coverage
+ cmake --build build --parallel $(nproc)
+ cmake --build build --target coverage
40
- name: Upload test report
41
uses: actions/upload-artifact@v4
42
with:
0 commit comments