From b2ba94f6e553420350ed1d0a1d6af1c67cc6d31d Mon Sep 17 00:00:00 2001 From: coolGi Date: Sun, 25 Jun 2023 00:01:37 +0000 Subject: [PATCH] Added clean to the ci --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 814c07ab5..96ad2710e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ build_1_18_2: stage: build_1_18_2 script: # this both runs the unit tests and assembles the code + - ./gradlew clean -PmcVer="1.18.2" --gradle-user-home cache/; - ./gradlew build -PmcVer="1.18.2" --gradle-user-home cache/; - ./gradlew mergeJars -PmcVer="1.18.2" --gradle-user-home cache/; image: eclipse-temurin:17 @@ -53,6 +54,7 @@ build_1_19_4: stage: build_1_19_4 script: # this both runs the unit tests and assembles the code + - ./gradlew clean -PmcVer="1.19.4" --gradle-user-home cache/; - ./gradlew build -PmcVer="1.19.4" --gradle-user-home cache/; - ./gradlew mergeJars -PmcVer="1.19.4" --gradle-user-home cache/; image: eclipse-temurin:17