From 68e14bd8971827e91a8f3a202804fb398bb2c073 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 19 Jul 2019 14:23:53 +0200 Subject: [PATCH] travis: Also call 'install' target to check if artifact creation is functional. --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 62610a1c0..f5417cb70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,12 @@ before_install: - sudo apt install graphviz install: gradle assemble --stacktrace -script: gradle check --stacktrace + +# Run the test suite and also install the artifacts in the local maven +# archive to additionaly test if artifact creation is +# functional. Which hasn't always be the case in the past, see +# 90cbcaebc7a89f4f771f733a33ac9f389df85be2 +script: gradle check install --stacktrace after_success: - JAVAC_VERSION=$((javac -version) 2>&1)