Skip to content

Commit

Permalink
Added -jnproc to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayBrahmakshatriya committed Oct 26, 2023
1 parent 21c007e commit f3cdac7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-all-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ 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
steps:
- 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"

0 comments on commit f3cdac7

Please sign in to comment.