Skip to content

Commit 97b1400

Browse files
committed
test
1 parent 70e7311 commit 97b1400

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
export CC=/usr/bin/gcc-13
1717
export CXX=/usr/bin/g++-13
1818
mkdir build && cd build
19-
cmake -DCMAKE_BUILD_TYPE=Debug -DGMGPOLAR_TEST_COVERAGE=ON ..
19+
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DGMGPOLAR_TEST_COVERAGE=ON ..
2020
make -j4
2121
- name: create build dir archive
2222
shell: bash

.github/actions/test/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ runs:
3434
shell: bash
3535
# compute code coverage
3636
run: |
37-
cd build
38-
cmake --build .
39-
cmake --build . --target coverage
37+
cmake --build build --parallel $(nproc)
38+
cmake --build build --target coverage
4039
- name: Upload test report
4140
uses: actions/upload-artifact@v4
4241
with:

0 commit comments

Comments
 (0)