diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2023-09-12 09:29:47 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-09-15 20:03:05 +0000 |
commit | 94cef34767830db48d5990c096759ec36183fda6 (patch) | |
tree | a3acf89c5bd8f745b941ac3543722d17b635bbb0 /.travis.yml | |
parent | bea5a110372d9fc68087b8f41ad02f754deb533f (diff) | |
download | sonarqube-94cef34767830db48d5990c096759ec36183fda6.tar.gz sonarqube-94cef34767830db48d5990c096759ec36183fda6.zip |
Revert "BUILD-2798 Implement suggested workaround for false positive in Travis CI"
This reverts commits:
- 32640f7dafa09f44dd85e552c70cc3493c24b086
- 0a49278b4e6cacd9144e7149c116ad321ab0dd43
- 1e4dfec8ec79a503d29ab1d9b9f2b9105d912ab9
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 570d624cd0a..3a6fb4a00b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,8 +37,6 @@ notifications: secure: PCekbN71ZmuOt82JUFmlhzxlx3wrXucSIpvxxWdZn9lfsPYQAtXCoOESaHjIVIpggsC5HSAic3HiedsWbuDk/XojmPrDCrfjgYG2wiuSuQlAa60WvzTPqXdRmUXyMQgItaAQbRfZP7kN9No/v8TZDfg5kT3i9ewy0bsfExpjAuo= on_start: always -# This is a temporary change as Travis is currently executing this body even -# when the job run successfully (support ticket #44617). -# The changes should be reverted once we have a proper solution. after_failure: - - "[[ $TRAVIS_TEST_RESULT = 1 ]] && source ./.travis/setup_environment.sh && notify_burgr \"build\" \"build\" \"$TRAVIS_JOB_WEB_URL\" \"$(cat /tmp/build_start_time)\" \"$(date --utc +%FT%TZ)\" \"failed\" || true" + - source ./.travis/setup_environment.sh + - notify_burgr "build" "build" "$TRAVIS_JOB_WEB_URL" "$(cat /tmp/build_start_time)" "$(date --utc +%FT%TZ)" "failed" || true |