From 3c5034000e44d2eac108c22264ebf64b68ef22eb Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 26 May 2022 15:22:04 -0700 Subject: [PATCH] Switch to -j3 for build workflow GHA uses 3-core machines for macOS so this tests if we're going to get better build times with an extra core. --- .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 93b92645..b40467cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,13 +29,13 @@ jobs: - uses: actions/checkout@v1 - name: make test run: | - make -j2 config=sanitize werror=1 test + make -j3 config=sanitize werror=1 test - name: make test w/flags run: | - make -j2 config=sanitize werror=1 flags=true test + make -j3 config=sanitize werror=1 flags=true test - name: make cli run: | - make -j2 config=sanitize werror=1 luau luau-analyze # match config with tests to improve build time + make -j3 config=sanitize werror=1 luau luau-analyze # match config with tests to improve build time ./luau tests/conformance/assert.lua ./luau-analyze tests/conformance/assert.lua