Improve github actions build times
This commit is contained in:
parent
bccf4c6100
commit
dbbec3b027
|
@ -46,7 +46,7 @@ jobs:
|
||||||
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
- name: Build the project
|
- name: Build the project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release -j
|
||||||
|
|
||||||
- name: Download linuxdeploy
|
- name: Download linuxdeploy
|
||||||
run: |
|
run: |
|
||||||
|
@ -85,7 +85,7 @@ jobs:
|
||||||
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
- name: Build the project
|
- name: Build the project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release -j
|
||||||
|
|
||||||
- name: Upload Windows artifact
|
- name: Upload Windows artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
@ -112,7 +112,7 @@ jobs:
|
||||||
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
- name: Build the project
|
- name: Build the project
|
||||||
run: cmake --build build --config Release
|
run: cmake --build build --config Release -j
|
||||||
|
|
||||||
- name: Create DMG package
|
- name: Create DMG package
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue