try nproc based parallelism

tmp/parallel-cli
Jesse Vincent 4 years ago
parent 8f8ebe87da
commit b47f5f741a
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: mxschmitt/action-tmate@v3 # - uses: mxschmitt/action-tmate@v3
## We delete the Bundle's version of Kaleidoscope, and symlink ourselves in. ## We delete the Bundle's version of Kaleidoscope, and symlink ourselves in.
## This makes sure we're using the current version of the library. ## This makes sure we're using the current version of the library.
- run: sudo apt-get install ccache - run: sudo apt-get install ccache
- run: make setup - run: make setup
- run: make smoke-sketches - run: make smoke-sketches -j $(nproc)
run-google-tests: run-google-tests:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
@ -25,7 +25,7 @@ jobs:
# - uses: mxschmitt/action-tmate@v3 # - uses: mxschmitt/action-tmate@v3
- run: sudo apt-get install ccache - run: sudo apt-get install ccache
- run: make setup - run: make setup
- run: make simulator-tests - run: make simulator-tests -j $(nproc)
check-astyle: check-astyle:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save