Skip to content

Commit

Permalink
Merge pull request quarkusio#16611 from famod/fix-verify-tcks-rr-deps
Browse files Browse the repository at this point in the history
CI: Fix tcks/resteasy-reactive/update-dependencies.sh failure on no-op incremental build
  • Loading branch information
geoand authored Apr 19, 2021
2 parents d18d83f + 8845bfa commit 0cd6553
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 0cd6553

Please sign in to comment.