From cefb5ca4c0d407a232060adb61bc25bd612cf691 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 29 Sep 2022 16:04:42 -0700 Subject: [PATCH] Check if we can use Ninja instead --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db9ce08b..564670b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,9 +21,9 @@ jobs: steps: - uses: actions/checkout@v1 - name: configure - run: cmake . -DCMAKE_BUILD_TYPE=Release + run: cmake . -DCMAKE_BUILD_TYPE=Release -GNinja - name: build - run: cmake --build . --target Luau.Repl.CLI Luau.Analyze.CLI --config Release -j 3 + run: cmake --build . --target Luau.Repl.CLI Luau.Analyze.CLI --config Release - uses: actions/upload-artifact@v2 if: matrix.os != 'windows' with: