Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate kubeflow-katib-presubmit to GitHub Actions #1882

Merged
merged 18 commits into from
Jun 6, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
split enas, darts and tf-mnist-with-summaries with trial images
  • Loading branch information
tenzen-y committed Jun 3, 2022
commit 83af3210d7a8e46babfc510f1ae1fff10454af41
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Test With enas-cnn-cifar10, darts-cnn-cifar10 and tf-mnist-with-summaries Images
name: E2E Test With darts-cnn-cifar10 Trial Image
on:
- push
- pull_request
Expand All @@ -21,12 +21,12 @@ jobs:
with:
experiments: ${{ matrix.experiments }}
# Comma Delimited
trial-images: enas-cnn-cifar10,darts-cnn-cifar10,tf-mnist-with-summaries
trial-images: darts-cnn-cifar10

strategy:
fail-fast: false
matrix:
# Detail: https://hub.docker.com/r/kindest/node
kubernetes-version: ["v1.21.12", "v1.22.9", "v1.23.6", "v1.24.1"]
# Comma Delimited
experiments: ["enas-cpu,darts-cpu,tfjob-mnist-with-summaries"]
experiments: ["darts-cpu"]
32 changes: 32 additions & 0 deletions .github/workflows/enas-cifar10-e2e-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: E2E Test With enas-cnn-cifar10 Trial Image
on:
- push
- pull_request

jobs:
e2e:
runs-on: ubuntu-20.04
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Test Env
uses: ./.github/workflows/template-setup-e2e-test
with:
kubernetes-version: ${{ matrix.kubernetes-version }}

- name: Run e2e test with ${{ matrix.experiments }} experiments
uses: ./.github/workflows/template-e2e-test
with:
experiments: ${{ matrix.experiments }}
# Comma Delimited
trial-images: enas-cnn-cifar10

strategy:
fail-fast: false
matrix:
# Detail: https://hub.docker.com/r/kindest/node
kubernetes-version: ["v1.21.12", "v1.22.9", "v1.23.6", "v1.24.1"]
# Comma Delimited
experiments: ["enas-cpu"]
2 changes: 1 addition & 1 deletion .github/workflows/mxnet-mnist-e2e-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Test With mxnet-mnist Image
name: E2E Test With mxnet-mnist Trial Image
on:
- push
- pull_request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytorch-mnist-e2e-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E Test With pytorch-mnist Image
name: E2E Test With pytorch-mnist Trial Image
on:
- push
- pull_request
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/tf-mnist-with-summaries-e2e-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: E2E Test With tf-mnist-with-summaries Trial Image
on:
- push
- pull_request

jobs:
e2e:
runs-on: ubuntu-20.04
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Test Env
uses: ./.github/workflows/template-setup-e2e-test
with:
kubernetes-version: ${{ matrix.kubernetes-version }}

- name: Run e2e test with ${{ matrix.experiments }} experiments
uses: ./.github/workflows/template-e2e-test
with:
experiments: ${{ matrix.experiments }}
# Comma Delimited
trial-images: tf-mnist-with-summaries

strategy:
fail-fast: false
matrix:
# Detail: https://hub.docker.com/r/kindest/node
kubernetes-version: ["v1.21.12", "v1.22.9", "v1.23.6", "v1.24.1"]
# Comma Delimited
experiments: ["tfjob-mnist-with-summaries"]