commit dcdab1d61b8f522b5701c328464af485d344933e parent 976b2b2efb11a43c5f742d3ef63fb5953de21495 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Tue, 23 Apr 2024 22:54:58 +0200 add pack step and enable parallel compile Diffstat:
M | .github/workflows/cmake.yml | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml @@ -40,4 +40,8 @@ jobs: run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel 3 + + - name: Pack + working-directory: ${{github.workspace}}/build + run: cmake -P ${{github.workspace}}/scripts/pack.cmake