kompose/.travis.yml
Charlie Drage 787b7d9261 kubernetes-incubator -> kubernetes
Today, we graduate from the incubator, thus all links are updates from
kubernetes-incubator to kubernetes
2017-07-12 15:42:13 -04:00

32 lines
745 B
YAML

# we need trusty because test-cmd depends on jq version >= 1.5
dist : trusty
sudo: required
language: go
# make this also work for forks
go_import_path: github.com/kubernetes/kompose
matrix:
include:
- go: 1.6
# Only build docs once
env: BUILD_DOCS=yes
- go: 1.7
- go: 1.8
install:
- true
# This is required because sometimes Travis ends up in a detached HEAD state after git clone
- script/test/cmd/fix_detached_head.sh
script:
- make test
after_success:
# gover collects all .coverprofile files and saves it to one file gover.coverprofile
- gover
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
# sync the docs only if everything else was successful
- ./script/sync-docs.sh