Skip to content

upload as OCI image on push #103

upload as OCI image on push

upload as OCI image on push #103

Workflow file for this run

name: E2E
on:
push:
branches:
- main
pull_request:
jobs:
e2e-distribution-registry:
name: E2E using CNCF Distribution Registry
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Start Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Start distribution-registry
run: |
./e2e/deploy_distribution_registry.sh
- name: Run E2E tests
run: |
make test-e2e
e2e-cli:
name: E2E of CLI (using Distribution Registry)
needs:
- e2e-distribution-registry # avoid rely on distribution registry for this other e2e if failed.
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Start Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Start distribution-registry
run: |
./e2e/deploy_distribution_registry.sh
- name: Run E2E tests for CLI
run: |
./e2e/test_cli.sh
e2e-zot:
name: E2E using CNCF Zot
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Start Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Start Zot
run: |
./e2e/deploy_zot.sh
- name: Run E2E tests
run: |
make test-e2e
e2e-quay-lite:
name: E2E using Quay (-lite)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Install ORAS (using it for login) # https://oras.land/docs/installation#linux
run: |
VERSION="1.2.0"
curl -LO "https://github.com/oras-project/oras/releases/download/v${VERSION}/oras_${VERSION}_linux_amd64.tar.gz"
mkdir -p oras-install/
tar -zxf oras_${VERSION}_*.tar.gz -C oras-install/
sudo mv oras-install/oras /usr/local/bin/
rm -rf oras_${VERSION}_*.tar.gz oras-install/
oras version
- name: Start Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Start Quay-lite
run: |
./e2e/deploy_quay_lite.sh
- name: Run E2E tests
run: |
make test-e2e
e2e-kubeflow-model-registry:
name: E2E of Kubeflow Model Registry (using Distribution Registry)
needs:
- e2e-distribution-registry # avoid rely on distribution registry for this other e2e if failed.
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
make install
- name: Start Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Start distribution-registry
run: |
./e2e/deploy_distribution_registry.sh
- name: Deploy Kubeflow Model Registry in KinD cluster
run: |
./e2e/deploy_model_registry.sh
- name: Run Kubeflow Model Registry E2E tests
run: |
make test-e2e-model-registry