forked from letsencrypt/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
71 lines (60 loc) · 2.52 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
62
63
64
65
66
67
68
69
70
71
language: go
go:
- "1.11.3"
- "1.10.6"
go_import_path: github.com/letsencrypt/boulder
addons:
hosts:
- le.wtf
- boulder
- boulder-mysql
- boulder-rabbitmq
sudo: required
services:
- docker
# Only build pushes to the master branch, PRs, and branches beginning with
# `test-`. You should not push branches beginning with `test-` to the
# letsencrypt repository, but this is a convenient way to push branches to your
# own fork of the repostiroy to ensure Travis passes before submitting a PR.
# For instance, you might run:
# git push myremote branchname:test-branchname
branches:
only:
- master
- staging
- release
- /^test-.*$/
env:
#
# Current Go version build tasks:
#
- RUN="vet fmt migrations integration errcheck generate dashlint rpm"
# Config changes that have landed in master but not yet been applied to
# production can be made in boulder-config-next.json.
- RUN="integration" BOULDER_CONFIG_DIR="test/config-next"
- RUN="unit"
- RUN="unit-next" BOULDER_CONFIG_DIR="test/config-next"
# godep-restore runs with a separate container because it needs to fetch
# packages from GitHub et. al., which is incompatible with the DNS server
# override in the boulder container (used for service discovery).
- RUN="godep-restore" CONTAINER="netaccess"
- RUN="coverage" CONTAINER="netaccess"
matrix:
fast_finish: true
allow_failures:
- env: RUN="coverage" CONTAINER="netaccess"
# We require a newer version of docker-compose than is installed by way of the
# "services: docker" directive. Per the travis docs[0] this is best remedied
# with the following `before_install` commands.
# [0]: https://docs.travis-ci.com/user/docker/#Using-Docker-Compose
before_install:
# We install `docker-compose` to $HOME/bin to avoid needing root perms.
# Afterwards where required we refer to the `docker-compose` binary by
# absolute path.
- curl -L https://github.com/docker/compose/releases/download/1.20.1/docker-compose-$(uname -s)-$(uname -m) > $HOME/bin/docker-compose
- chmod +x $HOME/bin/docker-compose
install:
- ./test/travis-before-install.sh
- $HOME/bin/docker-compose pull
script:
- $HOME/bin/docker-compose run --use-aliases -e BOULDER_CONFIG_DIR="${BOULDER_CONFIG_DIR}" -e RUN="${RUN}" -e TRAVIS="${TRAVIS}" -e TRAVIS_COMMIT="${TRAVIS_COMMIT}" -e TRAVIS_PULL_REQUEST="${TRAVIS_PULL_REQUEST}" -e TRAVIS_PULL_REQUEST="${TRAVIS_PULL_REQUEST}" -e TRAVIS_JOB_ID="${TRAVIS_JOB_ID}" -e COVERALLS_TOKEN="${COVERALLS_TOKEN}" ${CONTAINER:-boulder} ./test.sh