We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86958c2 commit 5212d38Copy full SHA for 5212d38
.github/workflows/e2e-ios-podman.yml
@@ -10,7 +10,7 @@ concurrency:
10
11
jobs:
12
e2e-test:
13
- runs-on: macos-13
+ runs-on: macos-latest
14
steps:
15
- uses: actions/checkout@v4
16
@@ -23,8 +23,13 @@ jobs:
23
- name: Set up Podman and pull images in background
24
run: |
25
brew install podman podman-compose
26
- podman machine init
27
- podman machine start
+ # Remove any existing machine and create new one
+ 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
33
podman version
34
35
# Set DOCKER_HOST environment variable
0 commit comments