fix(ci): Don't compose up the same image simultaneously (#9205)

Recently GitHub actions seems to have installed a buggy version of
compose that [fails with
`fatalError`](https://github.com/firezone/firezone/actions/runs/15181224905/job/42691214402?pr=9203)
on this line `docker compose up -d relay-1 relay-2 --no-build`.

Since those point to the same underlying image, I speculate that
separating these out will temporary alleviate this issue for us.
This commit is contained in:
Jamil
2025-05-22 02:14:23 -07:00
committed by GitHub
parent 745b57218b
commit 279115910e

View File

@@ -176,7 +176,8 @@ jobs:
# Start services in the same order each time for the tests
docker compose up -d iperf3
docker compose up -d api web domain --no-build
docker compose up -d relay-1 relay-2 --no-build
docker compose up -d relay-1 --no-build
docker compose up -d relay-2 --no-build
docker compose up -d gateway --no-build
docker compose up -d client --no-build
- name: Add 10ms simulated latency