Skip to content

Commit

Permalink
CI: Fix tcks/resteasy-reactive/update-dependencies.sh failure on no-o…
Browse files Browse the repository at this point in the history
…p incremental build
  • Loading branch information
famod committed Apr 18, 2021
1 parent 62bc4d4 commit 8845bfa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tcks/resteasy-reactive/update-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ echo ''
echo 'Building dependencies list from testuite pom.xml...'
echo ''

if [ "${CI:-}" == true ] && [ ! -f "${PRG_PATH}/target/testsuite/tests/pom.xml" ]
then
echo 'Testsuite pom.xml not found, assuming no-op incremental build.'
exit 0
fi

# get the Quarkus artifact ids from tests/pom.xml of the testsuite repo that is cloned in target
# pipefail is switched off briefly so that a better error can be logged when nothing is found
set +o pipefail
Expand Down

0 comments on commit 8845bfa

Please sign in to comment.