Skip to content

Commit

Permalink
Parallelize Github Actions builds
Browse files Browse the repository at this point in the history
  • Loading branch information
etang-cw committed Oct 3, 2023
1 parent 5de6ae9 commit f9dd809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
if: steps.cache-externals.outputs.cache-hit != 'true'
shell: bash
working-directory: ${{github.workspace}}
run: ./build_glslang_spirv_tools.sh Release
run: ./build_glslang_spirv_tools.sh Release 4

- name: Configure SPIRV-Cross
shell: bash
Expand All @@ -56,7 +56,7 @@ jobs:
shell: bash
working-directory: ${{github.workspace}}/build
run: |
cmake --build . --config Release
cmake --build . --config Release --parallel 4
cmake --build . --config Release --target install
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit f9dd809

Please sign in to comment.