'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 4m58s

This commit is contained in:
Your Name 2025-06-02 22:17:18 +12:00
parent 98f84000c8
commit ab9443a2d2
2 changed files with 10 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM debian:latest FROM ubuntu:latest
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache nlohmann-json3-dev \ build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache nlohmann-json3-dev \

View File

@ -87,12 +87,16 @@ function install_packages() {
case $OS in case $OS in
"Ubuntu") "Ubuntu")
# Common packages for both Ubuntu and Debian # Common packages for both Ubuntu and Debian
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache upx-ucl nlohmann-json3-dev" PACKAGES="build-essential cmake git wget tar curl ninja-build \
mold nodejs npm perl jq ccache upx-ucl nlohmann-json3-dev \
sed gawk autoconf automake autotools-dev"
INSTALLCMD="apt-get install -y" INSTALLCMD="apt-get install -y"
UPDATECMD="apt-get update" UPDATECMD="apt-get update"
;; ;;
"Debian GNU/Linux") "Debian GNU/Linux")
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache upx-ucl nlohmann-json3-dev" PACKAGES="build-essential cmake git wget tar curl ninja-build \
mold nodejs npm perl jq ccache upx-ucl nlohmann-json3-dev \
sed gawk autoconf automake autotools-dev"
INSTALLCMD="apt-get install -y" INSTALLCMD="apt-get install -y"
UPDATECMD="apt-get update" UPDATECMD="apt-get update"
@ -110,7 +114,9 @@ function install_packages() {
fi fi
;; ;;
"Alpine Linux") "Alpine Linux")
PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers perl jq ccache upx nlohmann-json-dev" PACKAGES="build-base cmake git wget tar curl ninja \
mold nodejs npm linux-headers perl jq ccache upx nlohmann-json-dev \
sed gawk autoconf automake autotools-dev"
INSTALLCMD="apk add --no-cache" INSTALLCMD="apk add --no-cache"
UPDATECMD="apk update" UPDATECMD="apk update"
;; ;;