Skip to content

Commit ce179f0

Browse files
committed
use docker compose
1 parent 6350315 commit ce179f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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 graal-native-docker-compose.yaml up -d
30+
docker compose -f .github/workflows/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 graal-native-docker-compose.yaml down # is this needed?
33+
docker compose -f .github/workflows/graal-native-docker-compose.yaml down # is this needed?

smoke-tests-otel-starter/spring-boot-3/src/test/java/io/opentelemetry/smoketest/GraalVmNativeKafkaSpringStarterSmokeTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* it's not yet clear why it doesn't work in our case.
1818
*
1919
* <p>In CI, this is done in reusable-native-tests.yml. If you want to run the tests locally, you
20-
* need to start the container manually: see reusable-native-tests.yml for the command.
20+
* need to start the container manually: see .github/workflows/reusable-native-tests.yml for the command.
2121
*/
2222
@EnabledInNativeImage // see JvmMongodbSpringStarterSmokeTest for the JVM test
2323
@EnabledInGithubActions

0 commit comments

Comments
 (0)