https://github.com/kubeflow/katib
Raw File
Tip revision: 4cbc13db7c15ab402397ed6adc749cead7b8a3f0 authored by avelichk on 19 February 2020, 18:21:37 UTC
Get search space only for the first run
Tip revision: 4cbc13d
.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