From f3cdac7195cc3ee987dd7540b60c1ee8b15e8187 Mon Sep 17 00:00:00 2001 From: Ajay Brahmakshatriya Date: Wed, 25 Oct 2023 22:14:38 -0400 Subject: [PATCH] Added -jnproc to CI --- .github/workflows/ci-all-samples.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-all-samples.yml b/.github/workflows/ci-all-samples.yml index 9229664..2eac6bd 100644 --- a/.github/workflows/ci-all-samples.yml +++ b/.github/workflows/ci-all-samples.yml @@ -9,10 +9,10 @@ jobs: uses: actions/checkout@v2 with: submodules: recursive - - run: make -C ${{ github.workspace }} run + - run: make -C ${{ github.workspace }} -j$(nproc) run - name: Install libunwind-dev run: sudo apt-get install libunwind-dev libdwarf-dev=20200114-1 libdwarf1=20200114-1 - - run: make -C ${{ github.workspace }} RECOVER_VAR_NAMES=1 run + - run: make -C ${{ github.workspace }} RECOVER_VAR_NAMES=1 -j$(nproc) run - run: echo "Tests completed" CI-Actions-MacOs: runs-on: macos-latest @@ -20,5 +20,5 @@ jobs: - run: echo "Starting tests" - name: Checking out repository uses: actions/checkout@v2 - - run: make -C ${{ github.workspace }} run + - run: make -C ${{ github.workspace }} -j$(nproc) run - run: echo "Tests completed"