Skip to content

Commit

Permalink
Fix broken MacOS dependency installation
Browse files Browse the repository at this point in the history
For an unknown reason, curl is failing to download from Cloudsmith.
wget is working.
  • Loading branch information
SeanTAllen committed Nov 25, 2023
1 parent 7abcd97 commit c519352
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .ci-scripts/MacOS-arm64-install-pony-tools.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ brew install libressl
pushd /tmp || exit
mkdir ponyc
echo ""https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz""
curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz" --output ponyc.tar.gz
wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-arm64-apple-darwin.tar.gz" -O ponyc.tar.gz
tar xzf ponyc.tar.gz -C ponyc --strip-components=1
popd || exit

pushd /tmp || exit
mkdir corral
curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/corral-arm64-apple-darwin.tar.gz" --output corral.tar.gz
wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/corral-arm64-apple-darwin.tar.gz" -O corral.tar.gz
tar xzf corral.tar.gz -C corral --strip-components=1
popd || exit
4 changes: 2 additions & 2 deletions .ci-scripts/macOS-x86-install-pony-tools.bash
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ brew install libressl

pushd /tmp || exit
mkdir ponyc
curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" --output ponyc.tar.gz
wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/ponyc-x86-64-apple-darwin.tar.gz" -O ponyc.tar.gz
tar xzf ponyc.tar.gz -C ponyc --strip-components=1
popd || exit

Expand All @@ -40,6 +40,6 @@ popd || exit

pushd /tmp || exit
mkdir corral
curl "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/corral-x86-64-apple-darwin.tar.gz" --output corral.tar.gz
wget "https://dl.cloudsmith.io/public/ponylang/${REPO}/raw/versions/latest/corral-x86-64-apple-darwin.tar.gz" -O corral.tar.gz
tar xzf corral.tar.gz -C corral --strip-components=1
popd || exit

0 comments on commit c519352

Please sign in to comment.