https://github.com/kubeflow/katib
Raw File
Tip revision: 7bf6870b0900c0c5ce46cf9a29f097f55d11dfa8 authored by Richard Liu on 30 April 2019, 19:09:25 UTC
Fix unit test
Tip revision: 7bf6870
prow_config.yaml
# This file configures the workflows to trigger in our Prow jobs.
# see kubeflow/testing/py/run_e2e_workflow.py
workflows:
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha1
    name: e2e-v1alpha1
    job_types:
      - presubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-ci"
  # The postsubmit run publishes the docker images to gcr.io/kubeflow-images-public      
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha1
    name: e2e-v1alpha1-release
    job_types:      
      - postsubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-images-public"
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha2
    name: e2e-v1alpha2
    job_types:
      - presubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-ci"
  - app_dir: kubeflow/katib/test/workflows
    component: workflows-v1alpha2
    name: e2e-v1alpha2-release
    job_types:
      - postsubmit
    include_dirs:
    - pkg/*
    - cmd/*
    - test/*
    params:
      registry: "gcr.io/kubeflow-images-public"
back to top