forked from submariner-io/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (50 loc) · 1.26 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
dist: xenial
language: go
branches:
only:
- master
- /^v\d+\.\d+\.\d+.*$/
- /^release-\d+.\d+.*$/
- lighthouse-0.3.0
git:
depth: false
jobs:
include:
- env: CMD="make ci"
- env: CMD="make e2e deploytool=operator"
RELEASE=true
- env: CMD="make e2e deploytool=helm"
install:
- sudo apt-get install moreutils # make ts available
services:
- docker
before_script:
- CHANGED_FILES_PR=$(git diff --name-only HEAD $(git merge-base HEAD $TRAVIS_BRANCH))
script:
- set -o pipefail;
$CMD 2>&1 | ts '[%H:%M:%.S]' -s
after_success:
- if [[ "${CHANGED_FILES_PR[@]}" =~ "scripts/kind-e2e/e2e.sh" ]]; then
echo "scripts/kind-e2e/e2e.sh was modified, testing recurring run on already deployed infrastructure.";
set -o pipefail;
$CMD 2>&1 | ts '[%H:%M:%.S]' -s;
fi
- echo "Testing cleaning up clusters";
set -o pipefail;
make cleanup 2>&1 | ts '[%H:%M:%.S]' -s
deploy:
- provider: script
script: bash scripts/release
on:
branch: master
condition: $RELEASE = true
- provider: script
script: bash scripts/release
on:
branch: /^release-\d+.\d+.*$/
- provider: script
script: bash scripts/release $TRAVIS_TAG
skip_cleanup: true
on:
tags: true
condition: $RELEASE = true