mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +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>
22 lines
416 B
YAML
22 lines
416 B
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- 1.8.x
|
|
env:
|
|
- DEP_VERSION="0.3.2"
|
|
|
|
before_install:
|
|
# Download the binary to bin folder in $GOPATH
|
|
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
|
|
# Make the binary executable
|
|
- chmod +x $GOPATH/bin/dep
|
|
|
|
install:
|
|
- dep ensure
|
|
|
|
script:
|
|
- make test
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|