Skip to content

Commit

Permalink
Use 4 parallel jobs in regression test
Browse files Browse the repository at this point in the history
    - Github runners provide 4 cores
  • Loading branch information
bdutro-mips committed Oct 16, 2024
1 parent d369841 commit eb7c4f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config $BUILD_TYPE
run: cmake --build . --config $BUILD_TYPE -j 4

- name: Regress
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config $BUILD_TYPE --target regress
run: cmake --build . --config $BUILD_TYPE -j 4 --target regress

0 comments on commit eb7c4f3

Please sign in to comment.