Skip to content

Commit

Permalink
ci: Enable ccruntime-e2e and makefile test on arm64
Browse files Browse the repository at this point in the history
Signed-off-by: Seunguk Shin <[email protected]>
Reviewed-by: Nick Connolly <[email protected]>
Reviewed-by: Tao Xu <[email protected]>
  • Loading branch information
Seunguk Shin committed Jan 16, 2025
1 parent fc492f9 commit 47cbda9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ccruntime_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- "tdx"
- "sev"
- "sev-snp"
- "arm64-nvidia-gpu"
exclude:
- runtimeclass: "kata-qemu"
instance: "tdx"
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ on:
jobs:
build:

runs-on: ubuntu-22.04
strategy:
matrix:
instance:
- "ubuntu-22.04"
- "arm64-nvidia-gpu"
runs-on: ${{ matrix.instance }}

steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4
Expand All @@ -33,6 +38,7 @@ jobs:
run: make bundle IMG=quay.io/confidential-containers/operator:latest

codeql:
if: ${{ matrix.instance == 'ubuntu-22.04' }}
permissions:
actions: read
contents: read
Expand All @@ -43,13 +49,16 @@ jobs:

envtest:
name: Test APIs using envtest
runs-on: ubuntu-22.04
strategy:
matrix:
instance:
- "ubuntu-22.04"
- "arm64-nvidia-gpu"
version:
- 1.30.x
- 1.31.x
- 1.32.x
runs-on: ${{ matrix.instance }}
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
Expand Down

0 comments on commit 47cbda9

Please sign in to comment.