File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ if: tag IS blank
77
88stages :
99 - name : build_commit
10- if : NOT (branch =~ /^rel\//) AND type != pull_request
10+ if : NOT (branch =~ /^hotfix\//) AND NOT (branch =~ /^ rel\//) AND type != pull_request
1111 - name : build_pr
1212 if : type = pull_request
1313 - name : build_release
14- if : branch =~ /^rel\// AND type != pull_request
14+ if : ( branch =~ /^hotfix\// OR branch =~ /^ rel\//) AND type != pull_request
1515 - name : deploy
1616 if : branch =~ /^rel\// AND type != pull_request
1717 - name : post_deploy
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const VersionMajor = 2
3333
3434// VersionMinor is the Minor semantic version number (x.#.z) - changed when backwards-compatible features are introduced.
3535// Not enforced until after initial public release (x > 0).
36- const VersionMinor = 9
36+ const VersionMinor = 10
3737
3838// Version is the type holding our full version information.
3939type Version struct {
Original file line number Diff line number Diff line change 44
55if [ " ${BUILD_TYPE} " = " integration" ]; then
66 # Run short tests when doing pull requests; leave the long testing for nightly runs.
7- if [[ " ${TRAVIS_BRANCH} " =~ ^rel/nightly ]]; then
7+ if [[ " ${TRAVIS_BRANCH} " =~ ^rel/nightly ]] || [[ " ${TRAVIS_BRANCH} " =~ ^hotfix/ ]] ; then
88 SHORTTEST=
99 else
1010 SHORTTEST=-short
1111 fi
1212 export SHORTTEST
1313 make integration
14- elif [ " ${TRAVIS_EVENT_TYPE} " = " cron" ] || [[ " ${TRAVIS_BRANCH} " =~ ^rel/ ]]; then
14+ elif [ " ${TRAVIS_EVENT_TYPE} " = " cron" ] || [[ " ${TRAVIS_BRANCH} " =~ ^rel/ ]] || [[ " ${TRAVIS_BRANCH} " =~ ^hotfix/ ]] ; then
1515 make fulltest -j2
1616else
1717 make shorttest -j2
You can’t perform that action at this time.
0 commit comments