Add in 1.20.1 builds! But, sky light for world gen isn't working...?

This commit is contained in:
TomTheFurry
2023-06-25 14:56:50 +08:00
parent eba2036718
commit 01f767486d
20 changed files with 347 additions and 111 deletions
+34
View File
@@ -8,6 +8,7 @@ stages:
# TODO: Make stages depending on what is in versionProperties
- build_1_18_2
- build_1_19_4
- build_1_20_1
variables:
# Pull core when building
@@ -84,6 +85,39 @@ build_1_19_4:
allow_failure: true
# 1.20.1 build
build_1.20.1:
stage: build_1.20.1
script:
# this both runs the unit tests and assembles the code
- ./gradlew clean -PmcVer="1.20.1" --gradle-user-home cache/;
- ./gradlew build -PmcVer="1.20.1" --gradle-user-home cache/;
- ./gradlew mergeJars -PmcVer="1.20.1" --gradle-user-home cache/;
image: eclipse-temurin:17
artifacts:
name: "NightlyBuild_1.20.1-${CI_COMMIT_SHORT_SHA}-${CI_COMMIT_TIMESTAMP}"
paths:
- Merged/*.jar
- fabric/build/libs/*.jar
- forge/build/libs/*.jar
- quilt/build/libs/*.jar
exclude:
# TODO: There is a lot of duplicate stuff here, fix it later to be smaller
- fabric/build/libs/*-all.jar
- fabric/build/libs/*-sources.jar
- forge/build/libs/*-all.jar
- forge/build/libs/*-sources.jar
- quilt/build/libs/*-all.jar
- quilt/build/libs/*-sources.jar
expire_in: 1 day
when: always
cache:
key: "gradleCache"
policy: pull-push
paths:
- .gradle
- cache/
allow_failure: true