From 10ba9e09654f1e2953842691d7439949ac63ddb0 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 18 Oct 2024 09:17:55 +0200 Subject: [PATCH] ci: Try to fix CoinUtils install --- .github/workflows/amd64_linux.yml | 3 ++- .github/workflows/amd64_macos.yml | 3 ++- .github/workflows/amd64_windows.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/amd64_linux.yml b/.github/workflows/amd64_linux.yml index b78d55c3..350c115a 100644 --- a/.github/workflows/amd64_linux.yml +++ b/.github/workflows/amd64_linux.yml @@ -30,7 +30,8 @@ jobs: && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild - && cmake --build build --config Release --target install + && cmake --build build --config Release + && sudo cmake --build build --config Release --target install && cd .. && rm -rf CoinUtils - name: Configure diff --git a/.github/workflows/amd64_macos.yml b/.github/workflows/amd64_macos.yml index 453087f9..9a84e94f 100644 --- a/.github/workflows/amd64_macos.yml +++ b/.github/workflows/amd64_macos.yml @@ -25,7 +25,8 @@ jobs: && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild - && cmake --build build --config Release --target install + && cmake --build build --config Release + && sudo cmake --build build --config Release --target install && cd .. && rm -rf CoinUtils - name: Configure diff --git a/.github/workflows/amd64_windows.yml b/.github/workflows/amd64_windows.yml index 7da48aba..e55834d9 100644 --- a/.github/workflows/amd64_windows.yml +++ b/.github/workflows/amd64_windows.yml @@ -29,7 +29,8 @@ jobs: && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git && cd CoinUtils && cmake -S. -Bbuild - && cmake --build build --config Release --target install + && cmake --build build --config Release + && sudo cmake --build build --config Release --target install && cd .. && rm -rf CoinUtils - name: Configure