diff options
author | Loïc Hoguin <[email protected]> | 2024-11-15 10:08:12 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-11-15 10:08:12 +0100 |
commit | 9a1490f1b81dc53acb2bc47fcc2a4db7402439b5 (patch) | |
tree | fd4b4fef8f8d1b7162282e244fe82e42c003e956 | |
parent | fe711b78ffc05980ff7f8e7d641877cab195c2bd (diff) | |
download | erlang.mk-9a1490f1b81dc53acb2bc47fcc2a4db7402439b5.tar.gz erlang.mk-9a1490f1b81dc53acb2bc47fcc2a4db7402439b5.tar.bz2 erlang.mk-9a1490f1b81dc53acb2bc47fcc2a4db7402439b5.zip |
CI: Use parallel Make
-rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 77cd01c..572ac88 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -93,12 +93,12 @@ jobs: - name: Run tests (Linux) if: matrix.os == 'ubuntu-latest' - run: make check c=${{ matrix.suite }} -k ${{ matrix.extra }} + run: make check c=${{ matrix.suite }} -j4 -k ${{ matrix.extra }} - name: Run tests (Windows) if: matrix.os == 'windows-latest' shell: msys2 {0} - run: PATH=$INSTALL_DIR_FOR_OTP/bin:$PATH make check c=${{ matrix.suite }} -k ${{ matrix.extra }} + run: PATH=$INSTALL_DIR_FOR_OTP/bin:$PATH make check c=${{ matrix.suite }} -j4 -k ${{ matrix.extra }} - name: Upload artifacts if: failure() @@ -153,7 +153,7 @@ jobs: - name: Run tests (Windows) if: matrix.os == 'windows-latest' shell: msys2 {0} - run: PATH=$INSTALL_DIR_FOR_OTP/bin:$PATH make packages -k ${{ matrix.extra }} + run: PATH=$INSTALL_DIR_FOR_OTP/bin:$PATH make packages -j4 -k ${{ matrix.extra }} - name: Upload artifacts if: failure() |