File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ jobs:
415
415
run : ./gradlew :smoke-tests:test -PsmokeTestSuite=none --no-daemon ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
416
416
417
417
- name : Test
418
- run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
418
+ run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }} ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
419
419
420
420
- name : Upload jvm crash dump files if any
421
421
if : failure()
@@ -489,13 +489,17 @@ jobs:
489
489
working-directory : gradle-plugins
490
490
491
491
- name : Build distro
492
- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
492
+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
493
493
working-directory : examples/distro
494
494
495
495
- name : Build extension
496
- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
496
+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
497
497
working-directory : examples/extension
498
498
499
+ - name : Build benchmark-overhead
500
+ run : ./gradlew assemble ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
501
+ working-directory : benchmark-overhead
502
+
499
503
- name : Run muzzle check against extension
500
504
run : ./gradlew muzzle --init-script ../../.github/scripts/local.init.gradle.kts
501
505
working-directory : examples/extension
Original file line number Diff line number Diff line change @@ -28,14 +28,11 @@ dependencies {
28
28
testImplementation(" org.slf4j:slf4j-simple:2.0.17" )
29
29
30
30
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
31
+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
31
32
}
32
33
33
34
tasks {
34
35
test {
35
36
useJUnitPlatform()
36
- testLogging {
37
- exceptionFormat = TestExceptionFormat .FULL
38
- showStandardStreams = true
39
- }
40
37
}
41
38
}
You can’t perform that action at this time.
0 commit comments