Skip to content

Commit

Permalink
Parrallel compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr authored Feb 19, 2025
1 parent 3a16e2d commit d8855f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
run: cmake -B ${{github.workspace}}/build -DBUILD_TESTS=YES -DWITH_TEST_COVERAGE=YES -DUSE_EIGEN=YES -DEIGEN_DIR=${{github.workspace}}/Eigen -DUSE_MOSEK=YES -DUSE_EIGEN=YES -DMOSEK_DIR=${{github.workspace}}/mosek/10.0/tools/platform/linux64x86

- name: Build
run: cmake --build ${{github.workspace}}/build
run: (cd ${{github.workspace}}/build && make -j 6)

- name: Test
working-directory: ${{github.workspace}}/build/tests
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: cmake -B ${{github.workspace}}/build -DBUILD_TESTS=YES -DWITH_TEST_COVERAGE=YES -DUSE_GLPK=YES

- name: Build
run: cmake --build ${{github.workspace}}/build
run: (cd ${{github.workspace}}/build && make -j 6)

- name: Test
working-directory: ${{github.workspace}}/build/tests
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
run: cmake -B ${{github.workspace}}/build -DBUILD_TESTS=YES -DWITH_TEST_COVERAGE=YES -DUSE_HIGHS=YES

- name: Build
run: cmake --build ${{github.workspace}}/build
run: (cd ${{github.workspace}}/build && make -j 6)

- name: Test
working-directory: ${{github.workspace}}/build/tests
Expand Down

0 comments on commit d8855f6

Please sign in to comment.