summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2019-10-10 12:20:32 +0200
committerGitHub <noreply@github.com>2019-10-10 12:20:32 +0200
commitb0018982f8aec0c6fb1f36252018367d779de93e (patch)
tree5b6e1283dd4081d92db270c0e93882732c5c1ba9 /.travis.yml
parent5e114a8828c2832904ad1c97f2f0739917002bfa (diff)
Move call to set_tag_for_release [ci skip]
Build was failing, because where the function is called, we have only cloned the last 50 commits.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index b4569326e7..efe1fb6019 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,7 +34,6 @@ install:
# These are release-related artifacts and have to be evaluated before we start doing conditional checks inside stages
- source ".travis/tagger.sh"
- export GIT_TAG="$(git tag --points-at)"
- - if [[ -z "${GIT_TAG}" ]]; then echo "Running set tag for release" && set_tag_for_release; fi;
@@ -255,6 +254,7 @@ jobs:
- echo "Last commit:" && git log -1
- echo "GIT Describe:" && git describe
- echo "packaging/version:" && cat packaging/version
+ - if [[ -z "${GIT_TAG}" ]]; then echo "Running set tag for release" && set_tag_for_release; fi;
- .travis/generate_changelog_and_tag_release.sh
after_failure: post_message "TRAVIS_MESSAGE" "<!here> Changelog generation and tag of release, failed"
git: