Skip to content

Commit

Permalink
ci: fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Oct 18, 2024
1 parent f4d3160 commit 0b6f756
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/amd64_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/amd64_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/amd64_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arm64_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0b6f756

Please sign in to comment.