Skip to content

Commit 7bbabb1

Browse files
authored
fix(ci): download macnotary package for correct arch (#2515)
We moved these tasks to arm64 in 7c26c7a, but did not update the corresponding download source. This started failing in CI this week.
1 parent a90358c commit 7bbabb1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.evergreen/sign-packaged-artifact.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ ls -lh dist/
1818
if [ "$(uname)" == Darwin ]; then
1919
# https://wiki.corp.mongodb.com/display/BUILD/How+to+use+MacOS+notary+service
2020
# download macnotary client
21-
curl -LO https://macos-notary-1628249594.s3.amazonaws.com/releases/client/latest/darwin_amd64.zip
22-
unzip darwin_amd64.zip
23-
chmod +x ./darwin_amd64/macnotary
24-
./darwin_amd64/macnotary -v
21+
curl -LO https://macos-notary-1628249594.s3.amazonaws.com/releases/client/latest/darwin_arm64.zip
22+
unzip darwin_arm64.zip
23+
chmod +x ./darwin_arm64/macnotary
24+
./darwin_arm64/macnotary -v
2525

2626
FILE=$(echo ./dist/*.zip)
2727
echo "notarizing $FILE ..."
2828

2929
# notarize the client
30-
./darwin_amd64/macnotary \
30+
./darwin_arm64/macnotary \
3131
-f "$FILE" \
3232
-m $notarymode -u https://dev.macos-notary.build.10gen.cc/api \
3333
-b com.mongodb.mongosh \

0 commit comments

Comments
 (0)