Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/buildomat/SHA256SUMS.helios
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1ba910c84256998c4bf4b925857c2693adebdc962a2e3075f4f8b67045f45105 yarn-1.22.22.js
3 changes: 3 additions & 0 deletions .github/buildomat/SHA256SUMS.linux
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
0fc88d966d33896384fbde56e9a8d80a305dc17a9f48f1832e061724b1719991 go1.22.11.linux-amd64.tar.gz
d8dab549b09672b03356aa2257699f3de3b58c96e74eb26a8b495fbdc9cf6fbe node-v20.11.1-linux-x64.tar.xz
1ba910c84256998c4bf4b925857c2693adebdc962a2e3075f4f8b67045f45105 yarn-1.22.22.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
0fc88d966d33896384fbde56e9a8d80a305dc17a9f48f1832e061724b1719991 go1.22.11.linux-amd64.tar.gz
3980b1d2be042a164989f2fd24f0bb306a2397d581a29c7426885578b369db5d go1.22.11.darwin-arm64.tar.gz
d8dab549b09672b03356aa2257699f3de3b58c96e74eb26a8b495fbdc9cf6fbe node-v20.11.1-linux-x64.tar.xz
fd771bf3881733bfc0622128918ae6baf2ed1178146538a53c30ac2f7006af5b node-v20.11.1-darwin-arm64.tar.xz
1ba910c84256998c4bf4b925857c2693adebdc962a2e3075f4f8b67045f45105 yarn-1.22.22.js
2 changes: 1 addition & 1 deletion .github/buildomat/helios-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pfexec pkg install \
pushd /work
mkdir bin
curl -sSfL --retry 10 -O "https://github.com/yarnpkg/yarn/releases/download/v$YARN_VERSION/yarn-$YARN_VERSION.js"
sha256sum --ignore-missing -c "$OLDPWD/.github/buildomat/SHA256SUMS"
sha256sum -c "$OLDPWD/.github/buildomat/SHA256SUMS.helios"
mv "yarn-$YARN_VERSION.js" bin/yarn
chmod a+x bin/yarn
popd
Expand Down
2 changes: 1 addition & 1 deletion .github/buildomat/linux-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pushd /work
curl -sSfL --retry 10 -O "https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz"
curl -sSfL --retry 10 -O "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz"
curl -sSfL --retry 10 -O "https://github.com/yarnpkg/yarn/releases/download/v$YARN_VERSION/yarn-$YARN_VERSION.js"
sha256sum --ignore-missing -c "$OLDPWD/.github/buildomat/SHA256SUMS"
sha256sum -c "$OLDPWD/.github/buildomat/SHA256SUMS.linux"
tar xf "go$GO_VERSION.linux-amd64.tar.gz"
tar xf "node-v$NODE_VERSION-linux-x64.tar.xz"
mv "yarn-$YARN_VERSION.js" "node-v$NODE_VERSION-linux-x64/bin/yarn"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pushd "$HOME/toolchain"
curl -sSfL --retry 10 -O "https://go.dev/dl/go$GO_VERSION.darwin-arm64.tar.gz"
curl -sSfL --retry 10 -O "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-darwin-arm64.tar.xz"
curl -sSfL --retry 10 -O "https://github.com/yarnpkg/yarn/releases/download/v$YARN_VERSION/yarn-$YARN_VERSION.js"
sha256sum --ignore-missing -c "$SOURCE_DIR/.github/buildomat/SHA256SUMS"
sha256sum -c "$SOURCE_DIR/.github/buildomat/SHA256SUMS.macos"
tar xf "go$GO_VERSION.darwin-arm64.tar.gz"
tar xf "node-v$NODE_VERSION-darwin-arm64.tar.xz"
mv "yarn-$YARN_VERSION.js" "node-v$NODE_VERSION-darwin-arm64/bin/yarn"
Expand Down