Introducing go-install-tool in the Makefile makes it easier to set up the development environment #631
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Test with pytorch-mnist | |
on: | |
pull_request: | |
paths-ignore: | |
- "pkg/ui/v1beta1/frontend/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Test Env | |
uses: ./.github/workflows/template-setup-e2e-test | |
with: | |
kubernetes-version: ${{ matrix.kubernetes-version }} | |
python-version: "3.10" | |
- name: Run e2e test with ${{ matrix.experiments }} experiments | |
uses: ./.github/workflows/template-e2e-test | |
with: | |
experiments: ${{ matrix.experiments }} | |
training-operator: true | |
# Comma Delimited | |
trial-images: pytorch-mnist-cpu | |
strategy: | |
fail-fast: false | |
matrix: | |
kubernetes-version: ["v1.27.11", "v1.28.7", "v1.29.2"] | |
# Comma Delimited | |
experiments: | |
# suggestion-hyperopt | |
- "long-running-resume,from-volume-resume,median-stop" | |
# others | |
- "grid,bayesian-optimization,tpe,multivariate-tpe,cma-es,hyperband" | |
- "file-metrics-collector,pytorchjob-mnist" | |
- "median-stop-with-json-format,file-metrics-collector-with-json-format" |