Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Jan 24, 2024
1 parent 028a0d0 commit bfed0a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,15 @@ jobs:
run: |
cmake -B build ${{ matrix.config.extra_options }} .
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores

- name: Build
shell: bash
run: |
export MAKEFLAGS=--keep-going
cmake --build build --config Release --parallel 3
cmake --build build --config Release --parallel ${{ steps.cpu-cores.outputs.count }}
- name: List Build Directory
if: always()
Expand Down

0 comments on commit bfed0a1

Please sign in to comment.