ci: use mvn verify phase instead of install

Installing the artifacts is not necessary, and
currently we have to remove them from the build
cache to prevent that from growing too large
This commit is contained in:
Adam
2020-12-13 10:43:33 -05:00
parent e6169ab79b
commit 78e0cf5392
2 changed files with 1 additions and 4 deletions

View File

@@ -27,6 +27,3 @@ jobs:
- name: Build
run: ./ci/build.sh
- name: Remove build artifacts
run: rm -rf ~/.m2/repository/net/runelite

View File

@@ -15,4 +15,4 @@ if [ ! -f "${GLSLANG_ARCHIVE}" ] || [ ! -d "${GLSLANG_DIR}" ] || ! echo "${GLSLA
unzip -o -q "${GLSLANG_ARCHIVE}" -d "${GLSLANG_DIR}"
fi
mvn clean install --settings ci/settings.xml -Dglslang.path="${GLSLANG_DIR}/bin/glslangValidator"
mvn verify --settings ci/settings.xml -Dglslang.path="${GLSLANG_DIR}/bin/glslangValidator"