-
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.
- Loading branch information
1 parent
0f46f78
commit fa96099
Showing
4 changed files
with
113 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
#!/bin/sh | ||
set -eu | ||
|
||
info() { | ||
echo "$@" >&2 | ||
} | ||
|
||
error() { | ||
echo "$@" >&2 | ||
exit 1 | ||
} | ||
|
||
get_os() { | ||
os="$(uname -s)" | ||
if [ "$os" = Darwin ]; then | ||
echo "macos" | ||
elif [ "$os" = Linux ]; then | ||
echo "linux" | ||
else | ||
error "unsupported OS: $os" | ||
fi | ||
} | ||
|
||
get_arch() { | ||
arch="$(uname -m)" | ||
if [ "$arch" = x86_64 ]; then | ||
echo "x64" | ||
elif [ "$arch" = aarch64 ] || [ "$arch" = arm64 ]; then | ||
echo "arm64" | ||
else | ||
error "unsupported architecture: $arch" | ||
fi | ||
} | ||
|
||
download_file() { | ||
url="$1" | ||
filename="$(basename "$url")" | ||
cache_dir="$(mktemp -d)" | ||
file="$cache_dir/$filename" | ||
|
||
info "Scaffoldizr: installing scfz..." | ||
|
||
if command -v curl >/dev/null 2>&1; then | ||
curl -#fLo "$file" "$url" | ||
else | ||
if command -v wget >/dev/null 2>&1; then | ||
stderr=$(mktemp) | ||
wget -O "$file" "$url" >"$stderr" 2>&1 || error "wget failed: $(cat "$stderr")" | ||
else | ||
error "scfz standalone install requires curl or wget but neither is installed. Aborting." | ||
fi | ||
fi | ||
|
||
echo "$file" | ||
} | ||
|
||
install_tool() { | ||
# download the tarball | ||
version="$SCFZ_VERSION" | ||
repo="arch-formula/scaffoldizr" | ||
os="$(get_os)" | ||
arch="$(get_arch)" | ||
install_path="${SCFZ_INSTALL_PATH:-$HOME/.local/bin/scfz}" | ||
install_dir="$(dirname "$install_path")" | ||
tarball_url="https://github.com/${repo}/releases/download/${version}/mise-${version}-${os}-${arch}.tar.gz" | ||
|
||
cache_file=$(download_file "$tarball_url") | ||
|
||
# TODO: Validate checksum | ||
# cd "$(dirname "$cache_file")" && get_checksum | "$(shasum_bin)" -c >/dev/null | ||
|
||
# extract tarball | ||
mkdir -p "$install_dir" | ||
rm -rf "$install_path" | ||
cd "$(mktemp -d)" | ||
tar -xzf "$cache_file" | ||
mv dist/bin/scfz "$install_path" | ||
info "Scaffoldizr: installed successfully to $install_path" | ||
} | ||
|
||
install_mise |
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 |
---|---|---|
@@ -1,33 +1,37 @@ | ||
#!/usr/bin/env bash | ||
set -euxo pipefail | ||
|
||
BASE_DIR="$(pwd)" | ||
RELEASE_DIR="dist/releases" | ||
BIN_DIR="dist/bin" | ||
SCFZ_VERSION="$(git tag --list | tail -n 1)" | ||
|
||
export RELEASE_DIR SCFZ_VERSION | ||
export BASE_DIR RELEASE_DIR SCFZ_VERSION | ||
|
||
rm -rf "${RELEASE_DIR:?}/$SCFZ_VERSION" | ||
rm -rf "${BIN_DIR:?}" | ||
mkdir -p "$RELEASE_DIR/$SCFZ_VERSION" | ||
mkdir -p "dist/bin" | ||
touch "dist/bin/scfz" | ||
mkdir -p "$BIN_DIR" | ||
|
||
find dist -name 'tarball-*' -exec sh -c ' | ||
target=${1#dist/tarball-} | ||
cp "dist/tarball-$target/"*.txt "$RELEASE_DIR/$SCFZ_VERSION" | ||
cp "dist/tarball-$target/"*.tar.gz "$RELEASE_DIR/$SCFZ_VERSION" | ||
' sh {} \; | ||
|
||
platforms=( | ||
linux-x64 | ||
linux-arm64 | ||
linux-armv6 | ||
linux-armv7 | ||
macos-x64 | ||
macos-arm64 | ||
) | ||
for platform in "${platforms[@]}"; do | ||
cp "$RELEASE_DIR/$SCFZ_VERSION/scfz-$platform.txt" "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.txt" | ||
cp "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.txt" "$RELEASE_DIR/scfz-latest-$platform.txt" | ||
tar -xvzf "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.txt" | ||
cp -v dist/bin/scfz "$RELEASE_DIR/scfz-latest-$platform" | ||
cp -v dist/bin/scfz "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform" | ||
done | ||
mv "$RELEASE_DIR/$SCFZ_VERSION/scfz-$platform.tar.gz" "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.tar.gz" | ||
cp "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.tar.gz" "$RELEASE_DIR/scfz-latest-$platform.tar.gz" | ||
tar -xvzf "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform.tar.gz" -C "$BIN_DIR" | ||
cp -v "dist/bin/$platform/scfz" "$RELEASE_DIR/scfz-latest-$platform" | ||
cp -v "dist/bin/$platform/scfz" "$RELEASE_DIR/$SCFZ_VERSION/scfz-$SCFZ_VERSION-$platform" | ||
done | ||
|
||
./scripts/render-install.sh >"$RELEASE_DIR"/install.sh | ||
chmod +x "$RELEASE_DIR"/install.sh | ||
# TODO: Figure out where to publish the install file |
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,6 @@ | ||
#!/usr/bin/env bash | ||
set -euxo pipefail | ||
|
||
SCFZ_VERSION=$SCFZ_VERSION; | ||
|
||
envsubst '$SCFZ_VERSION' <"$BASE_DIR/pkg/standalone/install.envsubst" |