Skip to content

Commit

Permalink
Clean up and some missed locations
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Overbeck committed Dec 2, 2023
1 parent 50c9488 commit 44f7539
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,6 @@ commands:
name: Restore bash environment from bash.env
command: !
cat bash.env >> $BASH_ENV || true
- run:
name: Display value of CORE_VERSION_OVERRIDE
command: echo "CORE_VERSION_OVERRIDE is $CORE_VERSION_OVERRIDE"

send_coverage:
steps:
Expand Down Expand Up @@ -474,9 +471,9 @@ commands:
if [ $CIRCLE_NODE_TOTAL != 1 ]
then
./mvnw -B org.jacoco:jacoco-maven-plugin:report org.jacoco:jacoco-maven-plugin:report-aggregate clean install -Dit.test=`cat /tmp/tests-to-run.txt` -DfailIfNoTests=false \
-P$TESTING_PROFILE,coverage -ntp | grep -v "^Running Changeset:"
-P$TESTING_PROFILE,coverage $CORE_VERSION_OVERRIDE -ntp | grep -v "^Running Changeset:"
else
./mvnw -B org.jacoco:jacoco-maven-plugin:report org.jacoco:jacoco-maven-plugin:report-aggregate clean install -P$TESTING_PROFILE,coverage -ntp | grep -v "^Running Changeset:"
./mvnw -B org.jacoco:jacoco-maven-plugin:report org.jacoco:jacoco-maven-plugin:report-aggregate clean install -P$TESTING_PROFILE,coverage $CORE_VERSION_OVERRIDE -ntp | grep -v "^Running Changeset:"
fi
# The piping grep command is a temporary fix to this issue https://github.com/liquibase/liquibase/issues/2396
save_test_results:
Expand Down Expand Up @@ -523,10 +520,10 @@ commands:
steps:
- run:
name: ensure artifacts are installed
command: ./mvnw clean install -DskipTests
command: ./mvnw clean install -DskipTests $CORE_VERSION_OVERRIDE
- run:
name: run toil tests
command: ./mvnw -P wes-integration-tests verify
command: ./mvnw -P wes-integration-tests verify $CORE_VERSION_OVERRIDE


setup_and_run_integration_tests:
Expand Down

0 comments on commit 44f7539

Please sign in to comment.