Skip to content

Commit

Permalink
Merge branch 'development' into chong/add-units-conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
chongchonghe committed Oct 29, 2024
2 parents 27ae3cd + 7a8dc75 commit 74ebd2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
working-directory: ${{runner.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE --parallel 2
run: cmake --build . --config $BUILD_TYPE --parallel 3

- name: Create test output directory
run: cmake -E make_directory $GITHUB_WORKSPACE/tests
Expand All @@ -71,7 +71,7 @@ jobs:
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --output-on-failure -C $BUILD_TYPE
run: ctest --output-on-failure -C $BUILD_TYPE -j3

- name: Upload test output
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ASAN_OPTIONS=abort_on_error=1:fast_unwind_on_malloc=1:detect_leaks=0 UBSAN_OPTIONS=print_stacktrace=0 LSAN_OPTIONS=suppressions=$GITHUB_WORKSPACE/tests/leak_suppress.txt ctest --output-on-failure -C $BUILD_TYPE
run: ASAN_OPTIONS=abort_on_error=1:fast_unwind_on_malloc=1:detect_leaks=0 UBSAN_OPTIONS=print_stacktrace=0 LSAN_OPTIONS=suppressions=$GITHUB_WORKSPACE/tests/leak_suppress.txt ctest --output-on-failure -C $BUILD_TYPE -j4

- name: Upload test output
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Run tests
working-directory: ${{runner.workspace}}/quokka/build
run: ctest --output-on-failure
run: ctest --output-on-failure -j4

- name: Upload test output
if: always()
Expand Down

0 comments on commit 74ebd2d

Please sign in to comment.