mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 07:55:45 +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
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: make compile ARCH=${{matrix.arch}}
|
||||
- run: make compile ARCH=${{matrix.arch}} -j
|
||||
- name: compress binary information
|
||||
run: |
|
||||
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
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: make compile ARCH=${{matrix.arch}}
|
||||
- run: make compile ARCH=${{matrix.arch}} -j
|
||||
# TODO: add linting checking here
|
||||
|
||||
Reference in New Issue
Block a user