Skip to content

Commit 045ffff

Browse files
authored
Merge pull request #2740 from algorand/relstable-2.9.1-remerge
2 parents 6a63559 + 9b1a532 commit 045ffff

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ if: tag IS blank
77

88
stages:
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

config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.
3939
type Version struct {

scripts/travis/run_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ set -e
44

55
if [ "${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
1616
else
1717
make shorttest -j2

0 commit comments

Comments
 (0)