Skip to content

Commit

Permalink
e2e: Move tests to gh action using azure workers
Browse files Browse the repository at this point in the history
use the azure runners provided by "confidential-containers/infra" to run
the kata-clh and kata-qemu workflows.

Signed-off-by: Lukáš Doktor <[email protected]>
  • Loading branch information
ldoktor committed Sep 22, 2023
1 parent 9080fe4 commit c6b06e2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/az-e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: azure e2e tests
on:
pull_request:
branches:
- main

permissions:
contents: read

jobs:
e2e:
name: operator azure e2e tests
runs-on: az-ubuntu-2204

strategy:
matrix:
runtimeclass: ["kata-qemu", "kata-clh"]

steps:
- uses: actions/checkout@v3

- name: Install deps
run: |
sudo apt-get update -y
sudo apt-get install -y ansible python-is-python3
- name: Run e2e tests
run: |
cd tests/e2e
export PATH="$PATH:/usr/local/bin"
./run-local.sh -r "{{ runtimeclass }}" -u

0 comments on commit c6b06e2

Please sign in to comment.