From ed766751cc9bc5cfd40104692ea130902c1951fd Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 23 Sep 2024 22:26:45 +0200 Subject: [PATCH] GHA/linux: tidy up msh3 build step Ninja does not improve msh3 build speed on GHA/linux: https://github.com/curl/curl/actions/runs/11020206432/job/30604509300 Cherry-picked from #15023 --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f6b2145ca5..314429f31a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -476,9 +476,9 @@ jobs: - name: 'build msh3' if: contains(matrix.build.install_steps, 'msh3') && steps.cache-msh3.outputs.cache-hit != 'true' run: | - git clone --quiet -b v${{ env.msh3-version }} --depth=1 --recursive https://github.com/nibanks/msh3 - cd msh3 && mkdir build && cd build - cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=$HOME/msh3 .. + git clone --quiet --depth=1 -b v${{ env.msh3-version }} --recursive https://github.com/nibanks/msh3 + cd msh3 + cmake -B . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=$HOME/msh3 cmake --build . cmake --install .