Skip to content

Commit

Permalink
Merge pull request #1471 from ryanrath/update_qa_test_script
Browse files Browse the repository at this point in the history
Updating qa-test-setup to include remote branch for Shippable
  • Loading branch information
jpwhite4 authored Dec 22, 2020
2 parents 4b05b1c + 949bdcf commit d4c8a0a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/ci/scripts/qa-test-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@ if [[ "$XDMOD_TEST_MODE" == "upgrade" ]]; then
# Setup the xdmod-qa environment / requirements.
$HOME/.qa/scripts/install.sh

# If we're running on Shippable then make sure to include the
# base branch that we're merging into.
build_args=""
if [ "$SHIPPABLE" = "true" ]; then
build_args="-r $BASE_BRANCH"
fi

# Run the xdmod-qa tests.
$HOME/.qa/scripts/build.sh
$HOME/.qa/scripts/build.sh $build_args

popd >/dev/null || exit 1
fi

0 comments on commit d4c8a0a

Please sign in to comment.