Skip to content

Commit

Permalink
workflows: Let ninja choose the number of threads
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman authored Dec 27, 2024
1 parent 3baa949 commit eabc9db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- name: Configure llvm cmake
run: cmake -Bbuild -Sllvm -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="lld;clang"
- name: Build clang
run: cmake --build build -j4 --target clang
run: cmake --build build --target clang
- name: Build lld
run: cmake --build build -j4 --target lld
run: cmake --build build --target lld
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit eabc9db

Please sign in to comment.