Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not run regression tests on tagged release commits #471

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ npm run test
# if merging to master and not a pull request, execute regression tests, create coverage report and update docs
if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
openssl aes-256-cbc -K $encrypted_b8aa0887832a_key -iv $encrypted_b8aa0887832a_iv -in key.json.enc -out key.json -d
# create new coverage report (executes regression tests)
npm run coveralls

# Only run regression tests on non-release (non-tagged) commits.
if [ "${TRAVIS_TAG}" == "" ]; then

This comment was marked as spam.

# create new coverage report (executes regression tests)
npm run coveralls
fi

# generate new set of json files in docs/json/master
npm run docs
Expand Down