diff --git a/.github/workflows/ci_test.yaml b/.github/workflows/ci_test.yaml index 1e906ec..5af05ef 100644 --- a/.github/workflows/ci_test.yaml +++ b/.github/workflows/ci_test.yaml @@ -55,10 +55,16 @@ jobs: shell: bash working-directory: ${{runner.workspace}}/Stellarator-Tools/build run: make -j VERBOSE=1 - - name: Test + - name: Test Mac + if: ${{matrix.os == 'macos-latest'}} + shell: bash + working-directory: ${{runner.workspace}}/Stellarator-Tools/build + run: make test ARGS=-j3 + - name: Test Linux + if: ${{matrix.os == 'macos-latest'}} shell: bash working-directory: ${{runner.workspace}}/Stellarator-Tools/build - run: make test + run: make test ARGS=-j2 - name: Show Log if: failure() shell: bash diff --git a/.github/workflows/ci_test_master.yaml b/.github/workflows/ci_test_master.yaml index 8d5b0ed..4994e83 100644 --- a/.github/workflows/ci_test_master.yaml +++ b/.github/workflows/ci_test_master.yaml @@ -55,10 +55,16 @@ jobs: shell: bash working-directory: ${{runner.workspace}}/Stellarator-Tools/build run: make -j VERBOSE=1 - - name: Test + - name: Test Mac + if: ${{matrix.os == 'macos-latest'}} + shell: bash + working-directory: ${{runner.workspace}}/Stellarator-Tools/build + run: make test ARGS=-j3 + - name: Test Linux + if: ${{matrix.os == 'macos-latest'}} shell: bash working-directory: ${{runner.workspace}}/Stellarator-Tools/build - run: make test + run: make test ARGS=-j2 - name: Show Log if: failure() shell: bash