Parallelize Github Actions builds

This commit is contained in:
Evan Tang 2023-10-03 14:29:30 -05:00
parent 5de6ae9d1e
commit f9dd8099fb

View File

@ -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
@ -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