From b47f5f741ab9c5b44afb826d5d89cd2c18805427 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Fri, 27 Nov 2020 15:45:46 -0800 Subject: [PATCH] try nproc based parallelism --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e06af258..c5ee6e5c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - 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. ## This makes sure we're using the current version of the library. - run: sudo apt-get install ccache - run: make setup - - run: make smoke-sketches + - run: make smoke-sketches -j $(nproc) run-google-tests: runs-on: ubuntu-20.04 steps: @@ -25,7 +25,7 @@ jobs: # - uses: mxschmitt/action-tmate@v3 - run: sudo apt-get install ccache - run: make setup - - run: make simulator-tests + - run: make simulator-tests -j $(nproc) check-astyle: runs-on: ubuntu-latest steps: