Skip to content

Commit b6a05d3

Browse files
committed
move docker compose file
1 parent 8793eb5 commit b6a05d3

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/reusable-native-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Testcontainers does not work with native-image,
2828
# therefore we're starting a Kafka container manually for the tests
2929
# The requested image's platform (linux/arm64/v8) does not match the detected host platform (linux/amd64/v3) and no specific platform was requested
30-
docker compose -f .github/workflows/graal-native-docker-compose.yaml up -d
30+
docker compose -f .github/graal-native-docker-compose.yaml up -d
3131
# don't wait for startup - gradle compile takes long enough
3232
./gradlew nativeTest
33-
docker compose -f .github/workflows/graal-native-docker-compose.yaml down # is this needed?
33+
docker compose -f .github/graal-native-docker-compose.yaml down # is this needed?

smoke-tests-otel-starter/spring-boot-3/build.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ dependencies {
2929

3030
tasks {
3131
test {
32-
usesService(gradle.sharedServices.registrations["testcontainersBuildService"].service) // is this needed?
33-
3432
// suppress warning about byte-buddy-agent being loaded dynamically
3533
jvmArgs("-XX:+EnableDynamicAgentLoading")
3634
}

0 commit comments

Comments
 (0)