mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-24 06:57:51 +01:00
Try brew install sbt
as workaround for macOS Ci runners failing to install sbt (#5555)
* Try 'brew install sbt' as workaround to https://github.com/actions/setup-java/issues/627 * Try downgrading github ci runner for mac to get a intel mac build * Fix intel mac bitcoind download hashes * Revert macOS CI runner
This commit is contained in:
parent
6543b261c4
commit
2102e4d682
4 changed files with 8 additions and 2 deletions
|
@ -21,6 +21,8 @@ jobs:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
cache: 'sbt'
|
cache: 'sbt'
|
||||||
|
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
|
||||||
|
run: brew install sbt
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/Mac_2.13_RPC_Tests.yml
vendored
2
.github/workflows/Mac_2.13_RPC_Tests.yml
vendored
|
@ -21,6 +21,8 @@ jobs:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
cache: 'sbt'
|
cache: 'sbt'
|
||||||
|
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
|
||||||
|
run: brew install sbt
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -21,6 +21,8 @@ jobs:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
cache: 'sbt'
|
cache: 'sbt'
|
||||||
|
- name: install sbt as workaround https://github.com/actions/setup-java/issues/627
|
||||||
|
run: brew install sbt
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -107,11 +107,11 @@ TaskKeys.downloadBitcoind := {
|
||||||
"26.1" -> (if (System.getProperty("os.arch") == "aarch64")
|
"26.1" -> (if (System.getProperty("os.arch") == "aarch64")
|
||||||
"8a8e415763b7ffd5988153cf03967d812eca629016dd3b0ddf6da3ab6f4a3621"
|
"8a8e415763b7ffd5988153cf03967d812eca629016dd3b0ddf6da3ab6f4a3621"
|
||||||
else
|
else
|
||||||
""),
|
"acb50edd20692a9d023de12da573b64ca0fd9b4e9a2b88d1251020a3022b0f27"),
|
||||||
"27.0" -> (if (System.getProperty("os.arch") == "aarch64")
|
"27.0" -> (if (System.getProperty("os.arch") == "aarch64")
|
||||||
"1d9d9b837297a73fc7a3b1cfed376644e3fa25c4e1672fbc143d5946cb52431d"
|
"1d9d9b837297a73fc7a3b1cfed376644e3fa25c4e1672fbc143d5946cb52431d"
|
||||||
else
|
else
|
||||||
"")
|
"e1efd8c4605b2aabc876da93b6eee2bedd868ce7d1f02b0220c1001f903b3e2c")
|
||||||
)
|
)
|
||||||
else if (Properties.isWin)
|
else if (Properties.isWin)
|
||||||
Map(
|
Map(
|
||||||
|
|
Loading…
Add table
Reference in a new issue