File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -45,23 +45,23 @@ jobs:
45
45
id : cache-bitcoind
46
46
uses : actions/cache@v4
47
47
with :
48
- path : $HOME/ bin/bitcoind-${{ runner.os }}-${{ runner.arch }}
48
+ path : bin/bitcoind-${{ runner.os }}-${{ runner.arch }}
49
49
key : bitcoind-${{ runner.os }}-${{ runner.arch }}
50
50
- name : Enable caching for electrs
51
51
id : cache-electrs
52
52
uses : actions/cache@v4
53
53
with :
54
- path : $HOME/ bin/electrs-${{ runner.os }}-${{ runner.arch }}
54
+ path : bin/electrs-${{ runner.os }}-${{ runner.arch }}
55
55
key : electrs-${{ runner.os }}-${{ runner.arch }}
56
56
- name : Download bitcoind/electrs and set environment variables
57
57
if : " matrix.platform != 'windows-latest' && (steps.cache-bitcoind.outputs.cache-hit != 'true' || steps.cache-electrs.outputs.cache-hit != 'true')"
58
58
run : |
59
59
source ./contrib/download_bitcoind_electrs.sh
60
- mkdir $HOME/ bin
61
- mv "$BITCOIND_EXE" $HOME/ bin/bitcoind-${{ runner.os }}-${{ runner.arch }}
62
- mv "$ELECTRS_EXE" $HOME/ bin/electrs-${{ runner.os }}-${{ runner.arch }}
63
- echo "BITCOIND_EXE=$HOME /bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV"
64
- echo "ELECTRS_EXE=$HOME /bin/electrs-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV"
60
+ mkdir bin
61
+ mv "$BITCOIND_EXE" bin/bitcoind-${{ runner.os }}-${{ runner.arch }}
62
+ mv "$ELECTRS_EXE" bin/electrs-${{ runner.os }}-${{ runner.arch }}
63
+ echo "BITCOIND_EXE=$( pwd ) /bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV"
64
+ echo "ELECTRS_EXE=$( pwd ) /bin/electrs-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV"
65
65
- name : Run CI script
66
66
shell : bash # Default on Winblows is powershell
67
67
run : CI_MINIMIZE_DISK_USAGE=1 ./ci/ci-tests.sh
You can’t perform that action at this time.
0 commit comments