Skip to content

Commit 7b81e9f

Browse files
authored
Disable collectReachabilityMetadata for benchmarks (#15725)
1 parent cc9034f commit 7b81e9f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/overhead-benchmark-daily.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@ jobs:
3838
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
3939

4040
- name: Build Latest Snapshot JAR
41-
run: ./gradlew assemble -x javadoc
41+
# Exclude GraalVM collectReachabilityMetadata tasks to avoid configuration cache issues
42+
# See https://github.com/graalvm/native-build-tools/issues/477
43+
run: >
44+
./gradlew assemble -x javadoc
45+
-x :smoke-tests-otel-starter:spring-boot-3:collectReachabilityMetadata
46+
-x :smoke-tests-otel-starter:spring-boot-3.2:collectReachabilityMetadata
47+
-x :smoke-tests-otel-starter:spring-boot-4:collectReachabilityMetadata
48+
-x :smoke-tests-otel-starter:spring-boot-reactive-3:collectReachabilityMetadata
4249
4350
- name: Run tests
4451
working-directory: benchmark-overhead

0 commit comments

Comments
 (0)