diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1c0276e..6388738 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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/" diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index f8b5b74..9392060 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -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