Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Enable ccruntime-e2e and makefile test on arm64 #484

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .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"
- "ubuntu-22.04-arm"
exclude:
- runtimeclass: "kata-qemu"
instance: "tdx"
Expand Down Expand Up @@ -70,7 +71,7 @@ jobs:
if [ $RUNNING_INSTANCE = "s390x-large" ]; then
args=""
export pre_install_payload_archs="linux/s390x"
elif [ "$RUNNING_INSTANCE" == "ubuntu-20.04" ] || [ "$RUNNING_INSTANCE" == "ubuntu-22.04" ]; then
elif [[ "$RUNNING_INSTANCE" == "ubuntu-"* ]] || [[ "$RUNNING_INSTANCE" == "arm64-nvidia-gpu" ]]; then
# Remove the pre-installed docker/containerd
sudo apt-get remove docker* containerd* -y
# Use /mnt to store images
Expand Down
12 changes: 10 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"
- "ubuntu-22.04-arm"
runs-on: ${{ matrix.instance }}

steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4
Expand Down Expand Up @@ -43,13 +48,16 @@ jobs:

envtest:
name: Test APIs using envtest
runs-on: ubuntu-22.04
strategy:
matrix:
instance:
- "ubuntu-22.04"
- "ubuntu-22.04-arm"
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
Loading