diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-12-14 12:40:03 +0100 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-12-14 12:40:03 +0100 |
| commit | f1caf10cb8af79b2620d9afdfd48f97591f0b75e (patch) | |
| tree | a0c0176c55ceeabce4a6b80dee483d054f591157 | |
| parent | c939cf5c4f45fce678f111f0079a237f4669e4ad (diff) | |
| download | rabbitmq-server-git-f1caf10cb8af79b2620d9afdfd48f97591f0b75e.tar.gz | |
Add Travis CI configurationrabbitmq_v3_6_0_rc3
| -rw-r--r-- | .travis.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..21fc0d0a5b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +sudo: false +language: erlang +notifications: + email: + - alerts@rabbitmq.com +addons: + apt: + packages: + - xsltproc +otp_release: + - "R16B03-1" + - "17.5" + - "18.0" + +# The checkout made by Travis is a "detached HEAD". We switch back +# to a tag or a branch. This pleases our git_rmq fetch method in +# rabbitmq-components.mk and the proper tag/branch is selected in +# dependencies too. +before_script: (test "$TRAVIS_TAG" && git checkout "$TRAVIS_TAG") || (test "$TRAVIS_BRANCH" && git checkout "$TRAVIS_BRANCH") + +script: make tests + +cache: + apt: true |
