https://github.com/kubeflow/katib
Revision da696d3a8c4aba41b18010a6a2486a78c19f50d3 authored by sperlingxx on 22 January 2020, 12:23:08 UTC, committed by sperlingxx on 22 January 2020, 12:23:08 UTC
1 parent bf92dd9
Raw File
Tip revision: da696d3a8c4aba41b18010a6a2486a78c19f50d3 authored by sperlingxx on 22 January 2020, 12:23:08 UTC
hotfix
Tip revision: da696d3
.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