diff --git a/.github/workflows/arm64_macos.yml b/.github/workflows/arm64_macos.yml index 66e436ea..3ddcfcfb 100644 --- a/.github/workflows/arm64_macos.yml +++ b/.github/workflows/arm64_macos.yml @@ -19,6 +19,16 @@ jobs: - uses: actions/checkout@v4 - name: Check cmake run: cmake --version + - name: Install CoinUtils + run: > + cd /tmp + && git clone -b stable/2.11 https://github.com/Mizux/CoinUtils.git + && cd CoinUtils + && cmake -S. -Bbuild + && cmake --build build --config Release + && sudo cmake --build build --config Release --target install + && cd .. + && rm -rf CoinUtils - name: Configure run: > cmake -S. -Bbuild