Skip to content

Commit 3c35bdc

Browse files
committed
test2
1 parent b6d9522 commit 3c35bdc

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,15 @@ jobs:
166166
- name: macOS
167167
os: macos-15-intel
168168
python-version: '3.10'
169-
packages: autoconf automake libtool boost@1.85 miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium
169+
packages: autoconf automake libtool boost miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium
170170
boost_root: true
171171
cc: clang
172172
cxx: clang++
173173

174174
- name: macOS-latest
175175
os: macos-15
176176
python-version: '3.12'
177-
packages: autoconf automake libtool boost@1.85 miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium
177+
packages: autoconf automake libtool boost miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium
178178
boost_root: true
179179
cc: clang
180180
cxx: clang++
@@ -293,7 +293,7 @@ jobs:
293293
id: macOS-nodepends
294294
os: macos-15-intel
295295
python-version: '3.10'
296-
packages: autoconf automake ccache libtool boost@1.85 miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg
296+
packages: autoconf automake ccache libtool boost miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg
297297
unit_tests: true
298298
functional_tests: true
299299
goal: deploy
@@ -305,7 +305,7 @@ jobs:
305305
id: macOS-nodepends-latest
306306
os: macos-15
307307
python-version: '3.12'
308-
packages: autoconf automake ccache libtool boost@1.85 miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg
308+
packages: autoconf automake ccache libtool boost miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg
309309
unit_tests: true
310310
functional_tests: true
311311
goal: deploy
@@ -456,13 +456,13 @@ jobs:
456456
id: macOS-nodepends
457457
os: macos-15-intel
458458
python-version: '3.10'
459-
packages: boost@1.85 miniupnpc libnatpmp pkg-config zmq libevent qrencode gmp libsodium
459+
packages: boost miniupnpc libnatpmp pkg-config zmq libevent qrencode gmp libsodium
460460

461461
- name: arm64-macOS-latest
462462
id: macOS-nodepends-latest
463463
os: macos-15
464464
python-version: '3.12'
465-
packages: boost@1.85 miniupnpc libnatpmp pkg-config zmq libevent qrencode gmp libsodium
465+
packages: boost miniupnpc libnatpmp pkg-config zmq libevent qrencode gmp libsodium
466466

467467
steps:
468468
- name: Initialize Python

params/install-params.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,14 @@ function install_params {
4545
filename="share/pivx/$filename"
4646
fi
4747

48-
if ! [ -f "$output" ]
49-
then
48+
if ! [ -f "$output" ]; then
49+
if [ "$(uname)" = "Darwin" ]; then
50+
echo "$expectedhash $filename" | shasum -a 256 -c
51+
else
5052
"$SHA256CMD" $SHA256ARGS -c <<EOF
5153
$expectedhash $filename
5254
EOF
55+
fi
5356

5457
# Check the exit code of the shasum command:
5558
CHECKSUM_RESULT=$?

0 commit comments

Comments
 (0)