feat: Remove CodebaseImageStream if Stage is removed #110
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: "Run End-to-end tests" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
e2e-tests: | |
name: End-to-end tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
# The e2e tests are run on the lowest and highest supported k8s version. | |
# All Kubernetes version in between expose the same APIs, hence the operator | |
# should be compatible with them. | |
kube-version: | |
- "1.27" | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: "install kuttl" | |
run: ./hack/install-kuttl.sh | |
- name: "run tests" | |
env: | |
KUBE_VERSION: ${{ matrix.kube-version }} | |
run: make start-kind KUBE_VERSION=$KUBE_VERSION && make e2e | |
e2e-tests-check: | |
runs-on: ubuntu-20.04 | |
if: always() | |
needs: [e2e-tests] | |
steps: | |
- name: Print result | |
run: echo ${{ needs.e2e-tests.result }} | |
- name: Interpret result | |
run: | | |
if [[ success == ${{ needs.e2e-tests.result }} ]] | |
then | |
echo "All matrix jobs passed!" | |
else | |
echo "One or more matrix jobs failed." | |
false | |
fi |