https://github.com/kubeflow/katib
Revision f4db052a16ee85a1a649e2fb7d6689a2d6c4e798 authored by Ce Gao on 15 January 2020, 05:54:40 UTC, committed by Ce Gao on 15 January 2020, 05:54:40 UTC
Signed-off-by: Ce Gao <gaoce@caicloud.io>
1 parent 866b363
Raw File
Tip revision: f4db052a16ee85a1a649e2fb7d6689a2d6c4e798 authored by Ce Gao on 15 January 2020, 05:54:40 UTC
fix: First check failed condition
Tip revision: f4db052
.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