File tree Expand file tree Collapse file tree
instrumentation/vaadin-14.2/javaagent Expand file tree Collapse file tree Original file line number Diff line number Diff line change 255255 'org.apache.groovy:**'
256256 ] ,
257257 } ,
258- {
259- // vaadin 14 tests require node 16
260- matchPackageNames : [
261- 'actions/node-versions' ,
262- ] ,
263- matchUpdateTypes : [
264- 'major' ,
265- ] ,
266- enabled : false ,
267- } ,
268258 {
269259 // intentionally using Spring Boot 2 to make sure the earliest version is supported
270260 matchFileNames : [
Original file line number Diff line number Diff line change @@ -287,11 +287,8 @@ jobs:
287287 distribution : temurin
288288 java-version-file : .java-version
289289
290- # vaadin 14 tests fail with node 18
291290 - name : Set up Node
292291 uses : actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
293- with :
294- node-version : 16
295292
296293 # vaadin tests use pnpm
297294 - name : Cache pnpm modules
Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ testing {
8282tasks {
8383 withType<Test >().configureEach {
8484 usesService(gradle.sharedServices.registrations[" testcontainersBuildService" ].service)
85+
86+ jvmArgs(" -Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true" )
87+ systemProperty(" collectMetadata" , findProperty(" collectMetadata" )?.toString() ? : " false" )
88+ // Enable legacy OpenSSL provider for Node.js 17+ compatibility with webpack 4
89+ environment(" NODE_OPTIONS" , " --openssl-legacy-provider" )
8590 }
8691
8792 check {
@@ -102,7 +107,3 @@ configurations.configureEach {
102107 }
103108 }
104109}
105- tasks.withType<Test >().configureEach {
106- jvmArgs(" -Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true" )
107- systemProperty(" collectMetadata" , findProperty(" collectMetadata" )?.toString() ? : " false" )
108- }
You can’t perform that action at this time.
0 commit comments