Revision 88da808dc17c05bb349007d739ca60cda4182689 authored by Andrey Velichkevich on 10 June 2020, 14:24:51 UTC, committed by GitHub on 10 June 2020, 14:24:51 UTC
* Add new Trial Template API

* Add TrialSource in TrialTemplate
Remove GoTemplate from Experiment API

* Add init logic for new trial template

* Change examples
Implement new Trial Template to controller

* Modify trial template configMap for new version of Trial Template
Fix experiment defaults
change valid/invalid experiment

* Run gofmt

* Fix hyperband

* Remove num-epochs from grid example

* Add tag to file mc example

* Modify create Trials loop
1 parent a6cf636
Raw File
.travis.yml
jobs:
  include:
    - name: "Go unit tests, gofmt, golint and coveralls"
      language: go
      go: "1.14.2"
      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
    - name: "Prettier frontend check"
      language: node_js
      node_js: "10.13.0"
      install:
        - npm install --global prettier@1.19.1
      script:
        - make prettier-check-v1alpha3
        - make prettier-check
back to top