From 0425652be11fa6025ef37b85bc27124d6f3da9d9 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 21 May 2025 09:03:49 +0100 Subject: [PATCH] Work around thread-safety bug in Docker Compose See https://github.com/docker/compose/issues/12747 and https://github.com/actions/runner-images/issues/12160 --- .github/workflows/smoke-test.yml | 1 + .../aot-smoke-test-ci-plugin/src/main/resources/smoke-test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 0d2ed260..804eb1e6 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -61,6 +61,7 @@ jobs: - name: Build id: build env: + COMPOSE_PARALLEL_LIMIT: 1 DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} REPO_SPRING_IO_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} REPO_SPRING_IO_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} diff --git a/gradle/plugins/aot-smoke-test-ci-plugin/src/main/resources/smoke-test.yml b/gradle/plugins/aot-smoke-test-ci-plugin/src/main/resources/smoke-test.yml index 0d2ed260..804eb1e6 100644 --- a/gradle/plugins/aot-smoke-test-ci-plugin/src/main/resources/smoke-test.yml +++ b/gradle/plugins/aot-smoke-test-ci-plugin/src/main/resources/smoke-test.yml @@ -61,6 +61,7 @@ jobs: - name: Build id: build env: + COMPOSE_PARALLEL_LIMIT: 1 DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} REPO_SPRING_IO_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} REPO_SPRING_IO_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}