This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 10058ee7fd3cc24c48d60ff3c10966a6a91475cd Author: James Netherton <[email protected]> AuthorDate: Thu May 13 11:20:08 2021 +0100 Disable NATS native build on CI #2589 --- tooling/scripts/test-categories.yaml | 2 +- tooling/scripts/validate-github-workflows.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/scripts/test-categories.yaml b/tooling/scripts/test-categories.yaml index c796d9d..226612b 100644 --- a/tooling/scripts/test-categories.yaml +++ b/tooling/scripts/test-categories.yaml @@ -133,7 +133,7 @@ group-09: - kafka-sasl-ssl - kafka-ssl - messaging - - nats +# - nats - splunk - spring-rabbitmq - xchange diff --git a/tooling/scripts/validate-github-workflows.groovy b/tooling/scripts/validate-github-workflows.groovy index dd19fc6..f691f03 100644 --- a/tooling/scripts/validate-github-workflows.groovy +++ b/tooling/scripts/validate-github-workflows.groovy @@ -30,7 +30,7 @@ final Set<String> executedBaseNames = [] as Set // Add any ignored itest modules here. Or prefix the module name with '#' to disable it // hystrix - https://github.com/apache/camel-quarkus/issues/1146 -final List<String> excludedModules = ['hystrix'] as List +final List<String> excludedModules = ['hystrix', 'nats'] as List final Yaml parser = new Yaml() def testCategoryConfig = parser.load((jobDefPath.toFile()).text)
