Skip to content

Commit 0b40364

Browse files
committed
chore: install vfkit
1 parent ecbc223 commit 0b40364

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

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

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,17 @@ concurrency:
1010

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

17-
- name: Install Nix
18-
uses: DeterminateSystems/nix-installer-action@v14
19-
20-
- name: Run the Magic Nix Cache
21-
uses: DeterminateSystems/magic-nix-cache-action@v8
22-
2317
- name: Set up Podman and pull images in background
2418
run: |
2519
brew install podman podman-compose
20+
podman --help
21+
2622
# Remove any existing machine and create new one
27-
podman machine rm --force || true
23+
podman machine reset --force || true
2824
podman machine init --cpus 4 --memory 4104 --disk-size 60 --now
2925
# podman machine start
3026
@@ -35,6 +31,7 @@ jobs:
3531
# Set DOCKER_HOST environment variable
3632
SOCKET_PATH=$(podman machine inspect --format '{{.ConnectionInfo.PodmanSocket.Path}}')
3733
echo "DOCKER_HOST=unix://${SOCKET_PATH}" >> $GITHUB_ENV
34+
export DOCKER_HOST="unix://${SOCKET_PATH}"
3835
3936
# Wait for Podman to be ready
4037
while ! podman info > /dev/null 2>&1; do
@@ -46,8 +43,13 @@ jobs:
4643
podman system connection list
4744
4845
# Start pulling images
49-
export DOCKER_HOST="unix://${SOCKET_PATH}"
50-
podman-compose -f dev/vendor/galoy-quickstart/docker-compose.yml pull &
46+
podman-compose -f dev/vendor/galoy-quickstart/docker-compose.yml pull
47+
48+
- name: Install Nix
49+
uses: DeterminateSystems/nix-installer-action@v14
50+
51+
- name: Run the Magic Nix Cache
52+
uses: DeterminateSystems/magic-nix-cache-action@v8
5153

5254
- name: Initialize ci deps
5355
env:

0 commit comments

Comments
 (0)