add -j argument to speed up compillation on the cloud

-j tells make to not set a limit to the amount of jobs it can use
parralel to one another.
We just gotta make sure the makefile supports the paralelsation
correctly, currently it should be.
This commit is contained in:
Quinn
2025-04-14 00:03:58 +02:00
committed by Quinn
parent ef9f472018
commit cf908a2f65
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ jobs:
OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: make compile ARCH=${{matrix.arch}} - run: make compile ARCH=${{matrix.arch}} -j
- name: compress binary information - name: compress binary information
run: | run: |
cd "${{github.workspace}}/bin/${{matrix.arch}}/rel/" cd "${{github.workspace}}/bin/${{matrix.arch}}/rel/"

View File

@@ -19,5 +19,5 @@ jobs:
- win-x86_64 - win-x86_64
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: make compile ARCH=${{matrix.arch}} - run: make compile ARCH=${{matrix.arch}} -j
# TODO: add linting checking here # TODO: add linting checking here