From fad37d80f3abe4dacbe31d898f6efe6fbdebb92f Mon Sep 17 00:00:00 2001 From: David Nestorovic Date: Wed, 6 Sep 2023 17:12:26 +0200 Subject: [PATCH] Fix --- .../main/groovy/org.graalvm.build.github-actions-helper.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/common-plugins/src/main/groovy/org.graalvm.build.github-actions-helper.gradle b/build-logic/common-plugins/src/main/groovy/org.graalvm.build.github-actions-helper.gradle index 9a365c33e..4aaf04b5d 100644 --- a/build-logic/common-plugins/src/main/groovy/org.graalvm.build.github-actions-helper.gradle +++ b/build-logic/common-plugins/src/main/groovy/org.graalvm.build.github-actions-helper.gradle @@ -17,7 +17,7 @@ sourceSets.configureEach { sourceSet -> ] matrix.putAll(matrixDefault) sourceSet.allSource.each { - matrix.testl << it.name.substring(0, it.name.lastIndexOf('.')) + matrix.test << it.name.substring(0, it.name.lastIndexOf('.')) } String githubOut = System.getenv("GITHUB_OUTPUT")