aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/travis.sh b/travis.sh
deleted file mode 100755
index e53cfba..0000000
--- a/travis.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash -v
-
-set -euo pipefail
-
-function configureTravis {
- mkdir -p ~/.local
- curl -sSL https://github.com/SonarSource/travis-utils/tarball/v57 | tar zx --strip-components 1 -C ~/.local
- source ~/.local/bin/install
-}
-configureTravis
-
-export DEPLOY_PULL_REQUEST=true
-
-# When a pull request is open on the branch, then the job related
-# to the branch does not need to be executed and should be canceled.
-# It does not book slaves for nothing.
-# @TravisCI please provide the feature natively, like at AppVeyor or CircleCI ;-)
-cancel_branch_build_with_pr || exit 0
-
-regular_mvn_build_deploy_analyze -Pdist-linux,dist-windows,dist-macosx
-