From 0b6f756933767d2108e8bc0e15137bc890aef407 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 18 Oct 2024 13:48:23 +0200 Subject: [PATCH] ci: fixup --- .github/workflows/amd64_linux.yml | 4 ++-- .github/workflows/amd64_macos.yml | 4 ++-- .github/workflows/amd64_windows.yml | 4 ++-- .github/workflows/arm64_macos.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/amd64_linux.yml b/.github/workflows/amd64_linux.yml index 350c115a..9555ee04 100644 --- a/.github/workflows/amd64_linux.yml +++ b/.github/workflows/amd64_linux.yml @@ -27,7 +27,7 @@ jobs: - name: Install CoinUtils run: > cd /tmp - && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git + && git clone -b stable/2.11 --depth=1 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild && cmake --build build --config Release @@ -39,7 +39,7 @@ jobs: cmake -S. -Bbuild -G "${{ matrix.cmake.generator }}" -DCMAKE_BUILD_TYPE="$BUILD_TYPE" - -DCMAKE_INSTALL_PREFIX=install + -DCMAKE_INSTALL_PREFIX=build/install - name: Build run: > cmake --build build diff --git a/.github/workflows/amd64_macos.yml b/.github/workflows/amd64_macos.yml index 9a84e94f..bb842e60 100644 --- a/.github/workflows/amd64_macos.yml +++ b/.github/workflows/amd64_macos.yml @@ -22,7 +22,7 @@ jobs: - name: Install CoinUtils run: > cd /tmp - && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git + && git clone -b stable/2.11 --depth=1 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild && cmake --build build --config Release @@ -34,7 +34,7 @@ jobs: cmake -S. -Bbuild -G "${{ matrix.cmake.generator }}" -DCMAKE_BUILD_TYPE=${{ matrix.cmake.config }} - -DCMAKE_INSTALL_PREFIX=install + -DCMAKE_INSTALL_PREFIX=build/install - name: Build run: > cmake --build build diff --git a/.github/workflows/amd64_windows.yml b/.github/workflows/amd64_windows.yml index bdb55fb4..90d50b12 100644 --- a/.github/workflows/amd64_windows.yml +++ b/.github/workflows/amd64_windows.yml @@ -25,7 +25,7 @@ jobs: cmake -G || true - name: Install CoinUtils run: > - git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git + git clone -b stable/2.11 --depth=1 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild && cmake --build build --config Release @@ -38,7 +38,7 @@ jobs: -G "${{ matrix.cmake.generator }}" -DCMAKE_CONFIGURATION_TYPES=${{ matrix.cmake.config }} -DBUILD_DEPS=ON - -DCMAKE_INSTALL_PREFIX=install + -DCMAKE_INSTALL_PREFIX=build/install - name: Build run: > cmake --build build diff --git a/.github/workflows/arm64_macos.yml b/.github/workflows/arm64_macos.yml index 3ddcfcfb..da1b4438 100644 --- a/.github/workflows/arm64_macos.yml +++ b/.github/workflows/arm64_macos.yml @@ -22,7 +22,7 @@ jobs: - name: Install CoinUtils run: > cd /tmp - && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git + && git clone -b stable/2.11 --depth=1 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild && cmake --build build --config Release @@ -34,7 +34,7 @@ jobs: cmake -S. -Bbuild -G "${{ matrix.cmake.generator }}" -DCMAKE_BUILD_TYPE=${{ matrix.cmake.config }} - -DCMAKE_INSTALL_PREFIX=install + -DCMAKE_INSTALL_PREFIX=build/install - name: Build run: > cmake --build build