-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: Move tests to gh action using azure workers
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
Showing
3 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
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 | ||
continue-on-error: false | ||
run: | | ||
cd tests/e2e | ||
export PATH="$PATH:/usr/local/bin" | ||
./run-local.sh -r "$RUNTIME_CLASS" -u | ||
env: | ||
RUNTIME_CLASS: ${{ matrix.runtimeclass }} |
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
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