Skip to content

Commit

Permalink
Test kuttl action
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Milleri <[email protected]>
  • Loading branch information
lmilleri committed Oct 17, 2024
1 parent c7edcfc commit e63f028
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/kuttl-int-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Integration tests"

on:
push:
branches:
- main
pull_request:
branches:
- main

env:
# github.repository as <account>/<repo>
# REGISTRY: quay.io/${{ github.repository }}
REGISTRY: quay.io/confidential-containers
KUTTL: /usr/local/bin/kubectl-kuttl

jobs:
integration-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
with:
go-version: 1.21
- uses: actions/[email protected]
- name: Install dependencies
run: |
sudo curl -Lo $KUTTL https://github.com/kudobuilder/kuttl/releases/download/v0.19.0/kubectl-kuttl_0.19.0_linux_x86_64
sudo chmod +x $KUTTL
sudo curl -Lo kind https://github.com/kubernetes-sigs/kind/releases/download/v0.24.0/kind-linux-amd64
sudo chmod +x kind
- name: "Run integration tests"
run: REGISTRY=$REGISTRY make test-e2e

0 comments on commit e63f028

Please sign in to comment.