https://github.com/kubeflow/katib
Revision 7711326121d0b0220dd2af61b715b4c254203b4c authored by Andrey Velichkevich on 24 March 2020, 14:00:48 UTC, committed by GitHub on 24 March 2020, 14:00:48 UTC
* Modify prow config

* Add examples to prow
1 parent 38ec768
Raw File
Tip revision: 7711326121d0b0220dd2af61b715b4c254203b4c authored by Andrey Velichkevich on 24 March 2020, 14:00:48 UTC
Update prow config with the latest folders (#1109)
Tip revision: 7711326
.travis.yml
jobs:
  include:
    - name: "Go unit tests, gofmt, golint and coveralls"
      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
    - name: "Prettier frontend check"
      language: node_js
      node_js: "10.13.0"
      install:
        - npm install --global prettier@1.19.1
      script:
        - make prettier-check
back to top