https://github.com/kubeflow/katib
Revision f20256f06a1e49999b8c516a11a1eec13733e591 authored by Wei Yan on 30 January 2020, 17:20:08 UTC, committed by Wei Yan on 30 January 2020, 17:20:08 UTC
1 parent 7b91909
Raw File
Tip revision: f20256f06a1e49999b8c516a11a1eec13733e591 authored by Wei Yan on 30 January 2020, 17:20:08 UTC
Update adopter
Tip revision: f20256f
.travis.yml
language: go

go:
  - "1.12.5"

go_import_path: github.com/kubeflow/katib

install:
  - curl -L -O "https://github.com/kubernetes-sigs/kubebuilder/releases/download/v1.0.7/kubebuilder_1.0.7_linux_amd64.tar.gz"
  - # extract the archive
  - tar -zxvf kubebuilder_1.0.7_linux_amd64.tar.gz
  - sudo mv kubebuilder_1.0.7_linux_amd64 /usr/local/kubebuilder
  - export PATH=$PATH:/usr/local/kubebuilder/bin
  # get coveralls.io support
  - go get github.com/mattn/goveralls

script:
  - make check
  - make test
  - goveralls -coverprofile=coverage.out
back to top