diff --git a/.github/workflows/run-system-tests.yml b/.github/workflows/run-system-tests.yml index 3941d2b007c..056ca3a4e62 100644 --- a/.github/workflows/run-system-tests.yml +++ b/.github/workflows/run-system-tests.yml @@ -18,6 +18,10 @@ jobs: - version: 21 toolchain: true steps: + - name: Setup Docker and Disable containerd-snapshotter) + uses: docker/setup-docker-action@e43656e248c0bd0647d3f5c195d116aacf6fcaf4 # v4.7.0 + with: + daemon-config: '{"features":{"containerd-snapshotter":false}}' - name: Check Out Code uses: actions/checkout@v6 - name: Prepare Gradle Build diff --git a/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainDistZipJarApp.gradle b/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainDistZipJarApp.gradle index 1345acd7719..2c7b83e6ae2 100644 --- a/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainDistZipJarApp.gradle +++ b/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainDistZipJarApp.gradle @@ -56,6 +56,5 @@ application { bootBuildImage { archiveFile = distZip.archiveFile runImage = "paketobuildpacks/ubuntu-noble-run:latest" - imagePlatform = "linux/amd64" environment = ['BP_JVM_VERSION': java.targetCompatibility.getMajorVersion()] } diff --git a/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainWarApp.gradle b/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainWarApp.gradle index 406927e3712..0adff84e4f7 100644 --- a/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainWarApp.gradle +++ b/system-test/spring-boot-image-system-tests/src/systemTest/resources/org/springframework/boot/image/paketo/PaketoBuilderTests-plainWarApp.gradle @@ -48,7 +48,6 @@ war { bootBuildImage { archiveFile = war.archiveFile runImage = "paketobuildpacks/ubuntu-noble-run:latest" - imagePlatform = "linux/amd64" environment = [ 'BP_JVM_VERSION': java.targetCompatibility.getMajorVersion(), 'BP_TOMCAT_VERSION': '11.*',