diff --git a/.travis.yml b/.travis.yml index b20d46995..217a0e562 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,6 @@ matrix: CC="clang-3.9" LINKFLAGS="-fuse-ld=gold-2.26" ENABLE_GLIBC_WORKAROUND=true - TRIGGER=true addons: postgresql: "9.5" apt: @@ -107,6 +106,3 @@ script: - test_ok && enabled ${COVERAGE} coverage - test_ok && enabled ${BENCH} make bench - ./scripts/check_glibcxx.sh - -after_success: - - enabled ${TRIGGER} trigger_downstream diff --git a/scripts/travis-common.sh b/scripts/travis-common.sh index fcc4eb4b1..f15eecdbc 100644 --- a/scripts/travis-common.sh +++ b/scripts/travis-common.sh @@ -90,21 +90,3 @@ configure () { coverage () { ./codecov -x "${LLVM_COV:-llvm-cov} gcov" -Z } - -trigger_downstream() { - body="{ - \"request\": { - \"message\": \"Triggered build: Mapnik core commit ${TRAVIS_COMMIT}\", - \"branch\":\"master\" - } - } - " - - curl -s -X POST \ - -H "Content-Type: application/json" \ - -H "Accept: application/json" \ - -H "Travis-API-Version: 3" \ - -H "Authorization: token ${TRAVIS_TRIGGER_TOKEN}" \ - -d "$body" \ - https://api.travis-ci.org/repo/mapnik%2Fpython-mapnik/requests -}