Added 1.16 support and added some other stuff

This commit is contained in:
coolGi2007
2022-04-04 18:19:31 +09:30
parent 05d5f0b943
commit ea4949b3a2
19 changed files with 249 additions and 46 deletions
+23 -2
View File
@@ -3,9 +3,10 @@ image: gradle:eclipse-temurin
# all stages need to be defined here
stages:
- build_17_1
- build_18_1
- build_18_2
- build_18_1
- build_17_1
- build_16_5
variables:
# Pull core when building
@@ -19,6 +20,26 @@ before_script:
# 1.16.5 build
build_16_5:
stage: build_16_5
script:
- ./gradlew deleteMerged --gradle-user-home cache/;
- ./gradlew build -PmcVer=1.16.5 --gradle-user-home cache/;
- ./gradlew merge --gradle-user-home cache/;
image: eclipse-temurin:8
artifacts:
name: "Merged_NightlyBuild_1_16_5-${CI_COMMIT_SHORT_SHA}-${CI_COMMIT_TIMESTAMP}"
paths:
- Merged
expire_in: 1 day
cache:
key: "gradleCache"
policy: pull-push
paths:
- .gradle
- cache/
# 1.17.1 build
build_17_1:
stage: build_17_1