mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
20 lines
467 B
YAML
20 lines
467 B
YAML
# Setting "sudo" to false forces Travis-CI to use its
|
|
# container-based build infrastructure, which has shorter
|
|
# queue times.
|
|
sudo: false
|
|
|
|
# Use the newer Travis-CI build templates based on the
|
|
# Debian Linux distribution "Trusty" release.
|
|
dist: trusty
|
|
|
|
# Select Go as the language used to run the build.
|
|
language: go
|
|
go: 1.9.x
|
|
go_import_path: github.com/kubernetes-csi/drivers
|
|
|
|
install:
|
|
- make
|
|
|
|
script:
|
|
- go test -v github.com/kubernetes-csi/drivers/... -cover
|