forked from radanalyticsio/openshift-spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·35 lines (34 loc) · 1.28 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
sudo: required
dist: trusty
language: go
## home folder is /home/travis/gopath/src/github.com/radanalyticsio/oshinko-cli
services:
- docker
matrix:
include:
- env: TO_TEST=openshift-spark OPENSHIFT_VERSION=v3.10
- env: TO_TEST=openshift-spark-py36 OPENSHIFT_VERSION=v3.10
- env: TO_TEST=openshift-spark-inc OPENSHIFT_VERSION=v3.10
- env: TO_TEST=openshift-spark-py36-inc OPENSHIFT_VERSION=v3.10
- env: TO_TEST=openshift-spark-comp OPENSHIFT_VERSION=v3.10
- env: TO_TEST=openshift-spark-py36-comp OPENSHIFT_VERSION=v3.10
fast_finish: true
before_install:
- pwd
- bash --version
- sudo apt-get install --only-upgrade bash
- bash --version
- test/prepare.sh
install:
before_script:
script:
- if [ "$TO_TEST" = "openshift-spark" ]; then make test-e2e-py ; fi
- if [ "$TO_TEST" = "openshift-spark-py36" ]; then make test-e2e-py36 ; fi
- if [ "$TO_TEST" = "openshift-spark-inc" ]; then make -f Makefile.inc test-e2e-py ; fi
- if [ "$TO_TEST" = "openshift-spark-py36-inc" ]; then make -f Makefile.inc test-e2e-py36 ; fi
- if [ "$TO_TEST" = "openshift-spark-comp" ]; then make -f Makefile.inc test-e2e-py-completed ; fi
- if [ "$TO_TEST" = "openshift-spark-py36-comp" ]; then make -f Makefile.inc test-e2e-py36-completed ; fi
notifications:
email:
on_success: never
on_failure: never