Skip to content

Commit 7eaac21

Browse files
committed
chore: update macos runner
1 parent 86958c2 commit 7eaac21

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/e2e-ios-podman.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010

1111
jobs:
1212
e2e-test:
13-
runs-on: macos-13
13+
runs-on: macos-latest
1414
steps:
1515
- uses: actions/checkout@v4
1616

@@ -23,8 +23,13 @@ jobs:
2323
- name: Set up Podman and pull images in background
2424
run: |
2525
brew install podman podman-compose
26-
podman machine init
26+
# Remove any existing machine and create new one
27+
podman machine rm -f podman-machine-default || true
28+
podman machine init --cpus 4 --memory 4104 --disk-size 60 --vm-type=vz --mount-type=virtiofs
2729
podman machine start
30+
31+
# Verify machine status
32+
podman machine ls
2833
podman version
2934
3035
# Set DOCKER_HOST environment variable

0 commit comments

Comments
 (0)