Skip to content

Commit

Permalink
Merge pull request #1558 from Hoikas/ci_4vcpus
Browse files Browse the repository at this point in the history
Use 4 concurrent jobs in CI.
  • Loading branch information
Hoikas authored Jan 19, 2024
2 parents 1c4c518 + 10b3998 commit 3dea978
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:

- name: Build
run: |
cmake --build build --config "${{ matrix.cfg.type }}" -j 2
cmake --build build --config "${{ matrix.cfg.type }}" -j 4
- name: Install
run: |
cmake --build build --target INSTALL --config "${{ matrix.cfg.type }}" -j 2
cmake --build build --target INSTALL --config "${{ matrix.cfg.type }}" -j 4
- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand All @@ -98,7 +98,7 @@ jobs:

- name: Test
run: |
cmake --build build --target check --config "${{ matrix.cfg.type }}" -j 2
cmake --build build --target check --config "${{ matrix.cfg.type }}" -j 4
max:
# Can only run if we have a token for our super seekrit Max SDK repo. Sad.
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Build
run: |
cmake --build build --target INSTALL --config Release -j 2
cmake --build build --target INSTALL --config Release -j 4
- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -231,11 +231,11 @@ jobs:
- name: Test
run: |
cmake --build build --target check -j 2
cmake --build build --target check -j 4
- name: Install
run: |
cmake --build build --target install -j 2
cmake --build build --target install -j 4
- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 3dea978

Please sign in to comment.