Skip to content

Commit

Permalink
Try brew install sbt as workaround for macOS Ci runners failing to …
Browse files Browse the repository at this point in the history
…install sbt (#5555)

* Try 'brew install sbt' as workaround to actions/setup-java#627

* Try downgrading github ci runner for mac to get a intel mac build

* Fix intel mac bitcoind download hashes

* Revert macOS CI runner
  • Loading branch information
Christewart committed Apr 29, 2024
1 parent 6543b26 commit 2102e4d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/Mac_2.13_Crypto_Core_AppServer_Tests.yml
Expand Up @@ -21,6 +21,8 @@ jobs:
distribution: 'adopt'
java-version: '21'
cache: 'sbt'
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
run: brew install sbt
- name: Cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Mac_2.13_RPC_Tests.yml
Expand Up @@ -21,6 +21,8 @@ jobs:
distribution: 'adopt'
java-version: '21'
cache: 'sbt'
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
run: brew install sbt
- name: Cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Mac_2.13_Wallet_Node_DLC_Tests.yml
Expand Up @@ -21,6 +21,8 @@ jobs:
distribution: 'adopt'
java-version: '21'
cache: 'sbt'
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
run: brew install sbt
- name: Cache
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions bitcoind-rpc/bitcoind-rpc.sbt
Expand Up @@ -107,11 +107,11 @@ TaskKeys.downloadBitcoind := {
"26.1" -> (if (System.getProperty("os.arch") == "aarch64")
"8a8e415763b7ffd5988153cf03967d812eca629016dd3b0ddf6da3ab6f4a3621"
else
""),
"acb50edd20692a9d023de12da573b64ca0fd9b4e9a2b88d1251020a3022b0f27"),
"27.0" -> (if (System.getProperty("os.arch") == "aarch64")
"1d9d9b837297a73fc7a3b1cfed376644e3fa25c4e1672fbc143d5946cb52431d"
else
"")
"e1efd8c4605b2aabc876da93b6eee2bedd868ce7d1f02b0220c1001f903b3e2c")
)
else if (Properties.isWin)
Map(
Expand Down

0 comments on commit 2102e4d

Please sign in to comment.