forked from Kong/kong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
74 lines (63 loc) · 1.53 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
72
73
74
dist: xenial
language: go
go:
- "1.13.x"
notifications:
email: false
slack:
if: branch = master OR branch = next
secure: WfMWtoj88BvoWG1AqNQMZ0c9OqjseUaMIwgSpaP8SJ+H33NTMI7vMhbbMBN2ENRD8r2haV0A2D0fnHy/3GQi6ryzKsqR1Jw/c+J0QZXQgmuj51i9iKSOM42n59t9V/QuD5b2BmHt5T+1Q6jLxtgtqBKoaJk3+WE5Iz9l+f+v0Hs=
services:
- redis-server
- docker
addons:
postgresql: "9.5"
apt:
packages:
- net-tools
- libpcre3-dev
- valgrind
- build-essential
hosts:
- grpcs_1.test
- grpcs_2.test
- grpcbin
env:
global:
- INSTALL_CACHE=$HOME/install-cache
- DOWNLOAD_ROOT=$HOME/download-root
- KONG_TEST_PG_DATABASE=travis
- KONG_TEST_PG_USER=travis
- KONG_TEST_PG_RO_USER=travis_ro
- KONG_TEST_PG_HOST=localhost
- JOBS=2
- DOCKER_MACHINE_ARM64_NAME=travis-ci-kong-${TRAVIS_JOB_ID}
matrix:
- KONG_TEST_DATABASE=postgres TEST_SUITE=integration
- KONG_TEST_DATABASE=cassandra CASSANDRA=3.9 TEST_SUITE=integration
- KONG_TEST_DATABASE=off TEST_SUITE=dbless
- KONG_TEST_DATABASE=postgres TEST_SUITE=plugins
- KONG_TEST_DATABASE=cassandra CASSANDRA=3.9 TEST_SUITE=plugins
- TEST_SUITE=pdk
install:
- source .ci/setup_env.sh
- make dev
cache:
apt: true
directories:
- $INSTALL_CACHE
- $HOME/.ccm/repository
stages:
- lint and unit
- test
jobs:
include:
- stage: lint and unit
script:
- make lint
- scripts/autodoc
- bin/busted -v -o htest spec/01-unit
env:
- KONG_DATABASE=none
script:
- .ci/run_tests.sh