Commit b7c49151 by Jonathan Thomas

Experiment to create a -forge build which has an extra FORGE file in it

parent db346a4f
Pipeline #12727 failed with stages
in 47 seconds
...@@ -52,6 +52,12 @@ build_mod: ...@@ -52,6 +52,12 @@ build_mod:
find build/libs -type f -name '*sources*.jar' -exec rm {} \; find build/libs -type f -name '*sources*.jar' -exec rm {} \;
mv build/libs/creaturechat-*.jar . mv build/libs/creaturechat-*.jar .
if [ "$minecraft_version" == "1.20.1" ]; then
cp creaturechat-1.20.1.jar creaturechat-1.20.1-forge.jar
touch FORGE
zip -r creaturechat-1.20.1-forge.jar FORGE
fi
FABRIC_API_JAR="fabric-api-${fabric_version}.jar" FABRIC_API_JAR="fabric-api-${fabric_version}.jar"
DOWNLOAD_URL="https://github.com/FabricMC/fabric/releases/download/${fabric_version//+/%2B}/${FABRIC_API_JAR}" DOWNLOAD_URL="https://github.com/FabricMC/fabric/releases/download/${fabric_version//+/%2B}/${FABRIC_API_JAR}"
wget -q -O "${FABRIC_API_JAR}" $DOWNLOAD_URL wget -q -O "${FABRIC_API_JAR}" $DOWNLOAD_URL
...@@ -91,7 +97,7 @@ gpt-4o: ...@@ -91,7 +97,7 @@ gpt-4o:
tags: tags:
- minecraft - minecraft
# Optional test (gpt 4o) # Optional test (llama3-8b)
llama3-8b: llama3-8b:
stage: test stage: test
script: script:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment