https://github.com/kubeflow/katib
Revision 26ef2f2de0cb60eb72fc0982423070a1e4970c6b authored by Xu Xiao on 20 January 2020, 08:17:37 UTC, committed by Kubernetes Prow Robot on 20 January 2020, 08:17:37 UTC
* add_alipay_into_adoptors

* replace alipay with antfin
1 parent 39fd75d
Raw File
Tip revision: 26ef2f2de0cb60eb72fc0982423070a1e4970c6b authored by Xu Xiao on 20 January 2020, 08:17:37 UTC
add antfin into list of adoptors (#1025)
Tip revision: 26ef2f2
.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