update
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 29s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 17s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 19s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push quilt (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Successful in 30s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 27s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 6s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 21s
Build and Push Minecraft Docker Images on Debian-base update / Docker prune (vm-docker-build2) (push) Successful in 3s

This commit is contained in:
2026-07-14 16:34:59 -07:00
parent 71488414bf
commit 1dfb0bfa91
+8 -8
View File
@@ -20,7 +20,7 @@ BUKKIT_INSTALLER_FILE=https://cdn.getbukkit.org/craftbukkit/craftbukkit-$MC_VERS
MC_BUKKIT_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/bukkit/run.sh MC_BUKKIT_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/bukkit/run.sh
# Install java # Install java
if [ "$JAVA_TYPE" = "openjdk" ]; then if [ $JAVA_TYPE = "openjdk" ]; then
echo "INFO ! openjdk selected" echo "INFO ! openjdk selected"
if dpkg -s openjdk-$JAVA_VERSION-jre-headless &> /dev/null if dpkg -s openjdk-$JAVA_VERSION-jre-headless &> /dev/null
then then
@@ -32,7 +32,7 @@ if [ "$JAVA_TYPE" = "openjdk" ]; then
apt-get --no-install-recommends -y install openjdk-$JAVA_VERSION-jre-headless apt-get --no-install-recommends -y install openjdk-$JAVA_VERSION-jre-headless
fi fi
elif [ "$JAVA_TYPE" = "msopenjdk" ]; then elif [ $JAVA_TYPE = "msopenjdk" ]; then
echo "INFO ! msopenjdk selected" echo "INFO ! msopenjdk selected"
if dpkg -s msopenjdk-$JAVA_VERSION &> /dev/null if dpkg -s msopenjdk-$JAVA_VERSION &> /dev/null
then then
@@ -53,7 +53,7 @@ fi
# Main install (Debian). # Main install (Debian).
# Check for server files and download if needed. # Check for server files and download if needed.
if [ "$MC_TYPE" = "vanilla" ]; then if [ $MC_TYPE = "vanilla" ]; then
echo "INFO ! Vanilla Selected" echo "INFO ! Vanilla Selected"
if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ] if [ -e $MC_DIR/MCserver-$MC_VERSION.jar ]
then then
@@ -82,7 +82,7 @@ if [ "$MC_TYPE" = "vanilla" ]; then
chmod +x $MC_DIR/run-$MC_VERSION.sh chmod +x $MC_DIR/run-$MC_VERSION.sh
fi fi
elif [ "$MC_TYPE" = "forge" ]; then elif [ $MC_TYPE = "forge" ]; then
echo "INFO ! Forge Selected" echo "INFO ! Forge Selected"
if [ -e $MC_DIR/forge-$MC_VERSION-$FORGE_VERSION-installer.jar ] if [ -e $MC_DIR/forge-$MC_VERSION-$FORGE_VERSION-installer.jar ]
then then
@@ -107,7 +107,7 @@ elif [ "$MC_TYPE" = "forge" ]; then
cd .. cd ..
fi fi
elif [ "$MC_TYPE" = "neoforged" ]; then elif [ $MC_TYPE = "neoforged" ]; then
echo "INFO ! Neoforged Selected" echo "INFO ! Neoforged Selected"
if [ -e $MC_DIR/neoforge-$NEOFORGED_VERSION-installer.jar ] if [ -e $MC_DIR/neoforge-$NEOFORGED_VERSION-installer.jar ]
then then
@@ -132,7 +132,7 @@ elif [ "$MC_TYPE" = "neoforged" ]; then
cd .. cd ..
fi fi
elif [ "$MC_TYPE" = "fabric" ]; then elif [ $MC_TYPE = "fabric" ]; then
echo "INFO ! Fabric Selected" echo "INFO ! Fabric Selected"
if [ -e $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar ] if [ -e $MC_DIR/fabric-$MC_VERSION-$FABRIC_VERSION.jar ]
then then
@@ -161,7 +161,7 @@ elif [ "$MC_TYPE" = "fabric" ]; then
chmod +x $MC_DIR/run-$MC_VERSION.sh chmod +x $MC_DIR/run-$MC_VERSION.sh
fi fi
elif [ "$MC_TYPE" = "quilt" ]; then elif [ $MC_TYPE = "quilt" ]; then
echo "INFO ! Quilt Selected" echo "INFO ! Quilt Selected"
if [ -e $MC_DIR/quilt-installer-$QUILT_VERSION.jar ] if [ -e $MC_DIR/quilt-installer-$QUILT_VERSION.jar ]
then then
@@ -199,7 +199,7 @@ elif [ "$MC_TYPE" = "quilt" ]; then
chmod +x $MC_DIR/run-$MC_VERSION.sh chmod +x $MC_DIR/run-$MC_VERSION.sh
fi fi
elif [ "$MC_TYPE" = "bukkit" ]; then elif [ $MC_TYPE = "bukkit" ]; then
echo "INFO ! Bukkit Selected" echo "INFO ! Bukkit Selected"
if [ -e $MC_DIR/craftbukkit-$MC_VERSION.jar ] if [ -e $MC_DIR/craftbukkit-$MC_VERSION.jar ]
then then