Skip to content

Commit 4c66263

Browse files
committed
Set -j 3 for builds in actions
1 parent 3209d09 commit 4c66263

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
mkdir build && cd build
2929
cmake ..
30-
cmake --build . --target luau-lsp
30+
cmake --build . --target luau-lsp -j 3
3131
3232
run_tests:
3333
strategy:
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
mkdir build && cd build
5353
cmake ..
54-
cmake --build . --target luau-lsp-tests
54+
cmake --build . --target luau-lsp-tests -j 3
5555
5656
- name: Run Tests
5757
run: ${{ matrix.test-path }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
mkdir build && cd build
5656
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
57-
cmake --build . --config Release --target luau-lsp
57+
cmake --build . --config Release --target luau-lsp -j 3
5858
5959
- name: (MacOS) Verify universal build
6060
if: matrix.os == 'macos-latest'

0 commit comments

Comments
 (0)