CI Documentation - added machine list table and label columns #32
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: ccruntime e2e tests | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
e2e: | |
name: operator tests | |
strategy: | |
fail-fast: false | |
matrix: | |
runtimeclass: ["kata-qemu", "kata-clh"] | |
instance: ["az-ubuntu-2004", "az-ubuntu-2204"] | |
runs-on: ${{ matrix.instance }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y ansible python-is-python3 | |
- name: Run e2e tests | |
timeout-minutes: 45 | |
run: | | |
cd tests/e2e | |
export PATH="$PATH:/usr/local/bin" | |
./run-local.sh -r "${{ matrix.runtimeclass }}" -u |