forked from GoogleContainerTools/skaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
101 lines (97 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
dist: xenial
language: go
go: "1.14.x"
go_import_path: /skaffold
git:
submodules: false
branches:
only:
- master
jobs:
include:
- os: linux
name: "linters"
script:
- make linters
- os: linux
name: "checks"
script:
- make checks
cache:
directories:
- $HOME/.cache/go-build
- os: linux
name: "Linux unit"
script:
- make coverage
cache:
directories:
- $HOME/.cache/go-build
- os: osx
name: "OSX unit"
script:
- make quicktest
cache:
directories:
- $HOME/.cache/go-build
- os: windows
name: "Windows unit"
script:
- go test -short -timeout 60s ./...
cache:
directories:
- C:\\Users\\travis\\AppData\\Local\\go-build
- os: linux
name: "integration partition 0"
language: minimal
script:
- env IT_PARTITION=0 make integration-in-kind
cache:
directories:
- $HOME/.cache/go-build
- $HOME/.gradle
- $HOME/.m2
- os: linux
name: "integration partition 1"
language: minimal
script:
- env IT_PARTITION=1 make integration-in-kind
cache:
directories:
- $HOME/.cache/go-build
- $HOME/.gradle
- $HOME/.m2
- os: linux
name: "integration partition 2"
language: minimal
script:
- env IT_PARTITION=2 make integration-in-kind
cache:
directories:
- $HOME/.cache/go-build
- $HOME/.gradle
- $HOME/.m2
- os: linux
name: "integration partition 3"
language: minimal
script:
- env IT_PARTITION=3 make integration-in-kind
cache:
directories:
- $HOME/.cache/go-build
- $HOME/.gradle
- $HOME/.m2
- os: linux
name: "diag/Linux unit"
script:
- make -f Makefile.diag coverage
cache:
directories:
- $HOME/.cache/go-build
- os: osx
name: "diag/OSX unit"
script:
- make -f Makefile.diag test
cache:
directories:
- $HOME/.cache/go-build