forked from kubernetes-retired/external-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (26 loc) · 695 Bytes
/
.travis.yml
File metadata and controls
33 lines (26 loc) · 695 Bytes
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
os:
- osx
- linux
language: go
go:
- 1.10.3
services: docker
go_import_path: github.com/kubernetes-incubator/external-storage
env:
- TEST_SUITE=osx
- TEST_SUITE=linux-local-volume
- TEST_SUITE=linux-everything-else
# - TEST_SUITE=linux-nfs ETCD_VER=v3.0.14 KUBE_VERSION=1.5.4
- TEST_SUITE=linux-nfs ETCD_VER=v3.2.18 KUBE_VERSION=1.11.2
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then ulimit -n 8192; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then mkdir -p $GOPATH/bin; fi
install: true
script:
- ./test.sh
deploy:
- provider: script
script: ./deploy.sh
on:
tags: true
condition: $TEST_SUITE = linux-local-volume && $TRAVIS_OS_NAME = linux