From 10b3998cf2bd5031a5be4e37393fc0a37fff8dc5 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 17 Jan 2024 19:12:05 -0500 Subject: [PATCH] Use 4 concurrent jobs in CI. --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a694117d07..25814a05dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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. @@ -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 @@ -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