Skip to content

Commit 5212d38

Browse files
committed
chore: update macos runner
1 parent 86958c2 commit 5212d38

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 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
27-
podman machine start
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 --now
29+
# 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)