-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
61 lines (53 loc) · 1.82 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# vim:sw=2:et:
os: linux
dist: xenial
language: elixir
notifications:
email:
recipients:
on_success: never
on_failure: always
addons:
apt:
packages:
- awscli
cache:
apt: true
env:
global:
- secure: F83CaAU9Hk71NYaNfcckiRs27+J1Htig+Fm51+cApz369WTSsMAWAiXdGQNqa6bft/Vw7be9LqPIvuVkgItaMxPGp5WRvrdZ4lLAIpYJkJuSizYJ8tfpGWyQILrKgRJB7IXnzlXL3baLW+WetRANFtfq7Pe1y3R1U45Ywf1B2KE=
- secure: L/PYb5BEdUa23H8LTqzHLn7xCuoEQbXsK8ELs++Dv8QacMRjSVZiBbCRRsfQF1+Z7qIH14WH5IcFLEs3WNtRVqq64Q4y6ZWLxwly4TxLxgfEjyBb0TlFra4QcAwLGqJFKm/CkxqA3lbOtJeTb6xKq/HnQHgn162wjJRjxR7Buo8=
# $base_rmq_ref is used by rabbitmq-components.mk to select the
# appropriate branch for dependencies.
- base_rmq_ref=master
elixir:
- '1.9'
otp_release:
- '21.3'
- '22.2'
install:
# This project being an Erlang one (we just set language to Elixir
# to ensure it is installed), we don't want Travis to run mix(1)
# automatically as it will break.
skip
script:
# $current_rmq_ref is also used by rabbitmq-components.mk to select
# the appropriate branch for dependencies.
- make check-rabbitmq-components.mk
current_rmq_ref="${TRAVIS_PULL_REQUEST_BRANCH:-${TRAVIS_BRANCH}}"
- make xref
current_rmq_ref="${TRAVIS_PULL_REQUEST_BRANCH:-${TRAVIS_BRANCH}}"
- make tests
current_rmq_ref="${TRAVIS_PULL_REQUEST_BRANCH:-${TRAVIS_BRANCH}}"
after_failure:
- |
cd "$TRAVIS_BUILD_DIR"
if test -d logs && test "$AWS_ACCESS_KEY_ID" && test "$AWS_SECRET_ACCESS_KEY"; then
archive_name="$(basename "$TRAVIS_REPO_SLUG")-$TRAVIS_JOB_NUMBER"
tar -c --transform "s/^logs/${archive_name}/" -f - logs | \
xz > "${archive_name}.tar.xz"
aws s3 cp "${archive_name}.tar.xz" s3://server-release-pipeline/travis-ci-logs/ \
--region eu-west-1 \
--acl public-read
fi