-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Use BuildJet Ubuntu 20.04 runners for better glibc compatibility …
…(#18442) Use BuildJet Ubuntu 20.04 runners. - Linux arm64 unchanged (glibc >= 2.35) - Linux x64 glibc requirement becomes to >= 2.31 (from glibc >= 2.35). Note: Ubuntu 20.04 repo cmake (3.16.3) is normally too old to build Zed, but `ubuntu-2004` [includes cmake 3.30.3](https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2004-Readme.md#tools).
- Loading branch information
Showing
5 changed files
with
56 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Install `mold` official binaries from GitHub Releases. | ||
# | ||
# Adapted from the official rui314/setup-mold@v1 action to: | ||
# * use environment variables instead of action inputs | ||
# * remove make-default support | ||
# * use curl instead of wget | ||
# * support doas for sudo | ||
# * support redhat systems | ||
# See: https://github.com/rui314/setup-mold/blob/main/action.yml | ||
|
||
set -euo pipefail | ||
|
||
MOLD_VERSION="${MOLD_VERSION:-${1:-}}" | ||
if [ "$(uname -s)" != "Linux" ]; then | ||
echo "Error: This script is intended for Linux systems only." | ||
exit 1 | ||
elif [ -z "$MOLD_VERSION" ]; then | ||
echo "Usage: $0 2.34.0" | ||
exit 1 | ||
elif [ -e /usr/local/bin/mold ]; then | ||
echo "Warning: existing mold found at /usr/local/bin/mold. Skipping installation." | ||
exit 0 | ||
fi | ||
|
||
if [ "$(whoami)" = root ]; then SUDO=; else SUDO="$(command -v sudo || command -v doas || true)"; fi | ||
|
||
MOLD_REPO="${MOLD_REPO:-https://github.com/rui314/mold}" | ||
MOLD_URL="${MOLD_URL:-$MOLD_REPO}/releases/download/v$MOLD_VERSION/mold-$MOLD_VERSION-$(uname -m)-linux.tar.gz" | ||
|
||
echo "Downloading from $MOLD_URL" | ||
curl --location --show-error --output - --retry 3 --retry-delay 5 "$MOLD_URL" \ | ||
| $SUDO tar -C /usr/local --strip-components=1 --no-overwrite-dir -xzf - | ||
|
||
# Note this binary depends on the system libatomic.so.1 which is usually | ||
# provided as a dependency of gcc so it should be available on most systems. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters