structure changes and update fixes & testing new base image
Some checks failed
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 fabric (push) Successful in 13s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 1m10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m21s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Failing after 1m35s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 1m1s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 2m37s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Has been skipped
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Has been skipped

This commit is contained in:
2025-12-20 08:12:24 -08:00
parent e9874e712b
commit ddf6461d89
33 changed files with 28 additions and 641 deletions

12
testing/test.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) 2023 fithwum
# All rights reserved
MC_VERSION="1.14.4"
VERSION_CHECK=$(curl -s "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json" | grep -Pom 1 '"url": "\K[^"]*'$MC_VERSION'.json')
MC_SERVER_FILE=$(curl -s $VERSION_CHECK | jq --raw-output '.downloads.server.url')
echo "Server url: $MC_SERVER_FILE"
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_SERVER_FILE -O /mnt/Other/Dockers/minecraft/testing/server-$MC_VERSION.jar