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

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


The following commit(s) were added to refs/heads/camel-quarkus-main by this 
push:
     new 9a967c5  Remove restriction for only testing projects with a native 
profile
9a967c5 is described below

commit 9a967c5cbd57139c62d544b4a58a901583975e31
Author: James Netherton <jamesnether...@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)}"

Reply via email to