You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/10/25 12:44:48 UTC

[camel-quarkus-examples] 08/14: Remove restriction for only testing projects with a native profile

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit d5e788f73e180d9f98bb1264c089f2a643ff9a7d
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Oct 13 09:37:47 2023 +0100

    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 6987c2d..8190abf 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("<id>native</id>")) {
+    if (file.getName() == "pom.xml") {
         if (GROUPS[groupId] == null) {
             GROUPS[groupId] = [:]
             GROUPS[groupId].name = "group-${String.format("%02d", groupId + 1)}"