This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
release-e2e #7
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: release-e2e | |
on: | |
release: | |
types: | |
- published | |
- edited | |
jobs: | |
release-e2e-kind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Download kubectl | |
run: | | |
curl -LO "https://dl.k8s.io/release/$(go list -m k8s.io/kubectl | cut -d" " -f2 | sed 's/^v0/v1/')/bin/linux/amd64/kubectl" | |
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl | |
- name: Start a kind cluster | |
run: make kind-cluster | |
- name: Install the cert-manager dependency | |
run: make cert-mgr | |
- name: Install the rukpak release manifests | |
run: | | |
kubectl apply -f https://github.com/operator-framework/rukpak/releases/download/${{ github.event.release.tag_name }}/rukpak.yaml | |
make wait | |
- name: Load testdata bundle container images into kind | |
run: make kind-load-bundles KIND=hack/tools/bin/kind | |
- name: Run e2e tests | |
run: make test-e2e KIND=hack/tools/bin/kind |