mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
91774fc936
Uses github.com/libopenstorage/secrets to communicate with Vault. This removes the need for maintaining our own limited Vault APIs. By adding the new dependency, several other packages got updated in the process. Unused indirect dependencies have been removed from go.mod. Signed-off-by: Niels de Vos <ndevos@redhat.com>
34 lines
350 B
YAML
34 lines
350 B
YAML
sudo: false
|
|
language: go
|
|
go_import_path: go.uber.org/multierr
|
|
|
|
env:
|
|
global:
|
|
- GO15VENDOREXPERIMENT=1
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
|
|
before_install:
|
|
- go version
|
|
|
|
install:
|
|
- |
|
|
set -e
|
|
make install_ci
|
|
|
|
script:
|
|
- |
|
|
set -e
|
|
make lint
|
|
make test_ci
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|