From bd09c94b77ed32abdd4e34fb3b63bf5098076c24 Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Mon, 24 Feb 2025 11:07:42 -0600 Subject: [PATCH] Fix podman CI (#1493) * Fix podman CI Update to podman 5.4.0 Signed-off-by: Anton Troshin * fix --cpus flag Signed-off-by: Anton Troshin --------- Signed-off-by: Anton Troshin --- .github/workflows/self_hosted_e2e.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/self_hosted_e2e.yaml b/.github/workflows/self_hosted_e2e.yaml index 5a42eb6a1..b4d1ecfd0 100644 --- a/.github/workflows/self_hosted_e2e.yaml +++ b/.github/workflows/self_hosted_e2e.yaml @@ -43,7 +43,7 @@ jobs: DAPR_RUNTIME_LATEST_STABLE_VERSION: "" DAPR_DASHBOARD_LATEST_STABLE_VERSION: "" GOLANG_PROTOBUF_REGISTRATION_CONFLICT: warn - PODMAN_VERSION: 4.9.3 + PODMAN_VERSION: 5.4.0 strategy: # TODO: Remove this when our E2E tests are stable for podman on MacOS. fail-fast: false # Keep running if one leg fails. @@ -90,9 +90,10 @@ jobs: # Start podman machine sudo podman-mac-helper install - podman machine init -v $HOME:$HOME + podman machine init -v $HOME:$HOME --memory 16384 --cpus 12 podman machine start --log-level debug podman machine ssh sudo sysctl -w kernel.keys.maxkeys=20000 + podman info echo "CONTAINER_RUNTIME=podman" >> $GITHUB_ENV - name: Determine latest Dapr Runtime version including Pre-releases if: github.base_ref == 'master'