From efd68f71a4be00eddabe597a3a2b7db445795cbb Mon Sep 17 00:00:00 2001 From: James Netherton Date: Fri, 13 Oct 2023 09:37:47 +0100 Subject: [PATCH] Remove restriction for only testing projects with a native profile --- .github/generate-test-groups.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/generate-test-groups.groovy b/.github/generate-test-groups.groovy index 6987c2d2..8190abfc 100644 --- a/.github/generate-test-groups.groovy +++ b/.github/generate-test-groups.groovy @@ -22,7 +22,7 @@ int groupId = 0 // Distribute example projects across a bounded set of test groups and output as JSON new File(".").eachFileRecurse { file -> - if (file.getName() == "pom.xml" && file.text.contains("native")) { + if (file.getName() == "pom.xml") { if (GROUPS[groupId] == null) { GROUPS[groupId] = [:] GROUPS[groupId].name = "group-${String.format("%02d", groupId + 1)}"