Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggest to bump alpine release to latest known today: 3.21.0. #114

Merged
merged 1 commit into from
Dec 20, 2024
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
2 changes: 1 addition & 1 deletion scripts/chroot/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ find /scripts
apk update
apk add alpine-sdk util-linux strace file autoconf automake libtool xz bash \
eudev-dev gettext-dev linux-headers meson \
zstd-dev zlib-dev zlib-static clang
zstd-dev zstd-static zlib-dev zlib-static clang

/scripts/common/install-dependencies.sh
/scripts/build-runtime.sh
8 changes: 6 additions & 2 deletions scripts/chroot/chroot_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ cd "$tempdir"
# Download and extract minimal Alpine system
#############################################

wget "http://dl-cdn.alpinelinux.org/alpine/v3.17/releases/${ALPINE_ARCH}/alpine-minirootfs-3.17.2-${ALPINE_ARCH}.tar.gz"
ALPINE_RELEASE="3.21.0"
wget "http://dl-cdn.alpinelinux.org/alpine/v${ALPINE_RELEASE%.*}/releases/${ALPINE_ARCH}/alpine-minirootfs-${ALPINE_RELEASE}-${ALPINE_ARCH}.tar.gz"
wget "http://dl-cdn.alpinelinux.org/alpine/v${ALPINE_RELEASE%.*}/releases/${ALPINE_ARCH}/alpine-minirootfs-${ALPINE_RELEASE}-${ALPINE_ARCH}.tar.gz.sha256"
sha256sum -c alpine-minirootfs-${ALPINE_RELEASE}-${ALPINE_ARCH}.tar.gz.sha256

mkdir -p ./miniroot
cd ./miniroot
sudo tar xf ../alpine-minirootfs-*-"${ALPINE_ARCH}".tar.gz
Expand Down Expand Up @@ -94,4 +98,4 @@ esac
cd "$repo_root_dir"
mkdir -p ./out/
cp "${tempdir}/miniroot/out/runtime-${appimage_arch}" out/
cp "${tempdir}/miniroot/out/runtime-${appimage_arch}.debug" out/
cp "${tempdir}/miniroot/out/runtime-${appimage_arch}.debug" out/
Loading