I noticed an interesting issue with the GitHub Action "Test make dev" in the Keycloak branch. The issue seems to be unrelated to the business logic related stuff, as the runner seems to run out of space when while downloading images for the random products.
One reason for the issue popping up in that branch is most likely that it requires additional container images (Keycloak, Postgres 16) to be pulled, but it's not necessarily the root cause.
The downloaded products.images.tar.gz is around 1.16 GB compressed, 1.17 GB (>8000 files) extracted. As the GitHub workflow probably only needs to verify that make dev works in principle, using a simpler product export with 5-10 products instead of hundreds of products could solve that issue for a while.
I noticed an interesting issue with the GitHub Action "Test make dev" in the Keycloak branch. The issue seems to be unrelated to the business logic related stuff, as the runner seems to run out of space when while downloading images for the random products.
One reason for the issue popping up in that branch is most likely that it requires additional container images (Keycloak, Postgres 16) to be pulled, but it's not necessarily the root cause.
The downloaded
products.images.tar.gz
is around 1.16 GB compressed, 1.17 GB (>8000 files) extracted. As the GitHub workflow probably only needs to verify thatmake dev
works in principle, using a simpler product export with 5-10 products instead of hundreds of products could solve that issue for a while.