mirror of
https://github.com/thepigeongenerator/mcaselector-lite
synced 2026-02-08 07:33:35 +01:00
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:
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
@@ -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/"
|
||||||
|
|||||||
2
.github/workflows/validate.yaml
vendored
2
.github/workflows/validate.yaml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user