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 2021/02/09 09:38:36 UTC

[camel-quarkus] 05/08: ssh: disable native image tests

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

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

commit db04b7413b274f1d5f31b47368bb4ce112efbaf8
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Mon Feb 8 14:26:17 2021 +0100

    ssh: disable native image tests
    
    See https://github.com/apache/camel-quarkus/issues/2212
---
 tooling/scripts/test-categories.yaml             | 2 +-
 tooling/scripts/validate-github-workflows.groovy | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/tooling/scripts/test-categories.yaml b/tooling/scripts/test-categories.yaml
index e750fb3..7d9ef9a 100644
--- a/tooling/scripts/test-categories.yaml
+++ b/tooling/scripts/test-categories.yaml
@@ -23,7 +23,7 @@ cache-networking3:
   - caffeine
   - http
   - jsch
-  - ssh
+  #- ssh https://github.com/apache/camel-quarkus/issues/2212
   - hazelcast
   - ipfs
 cloud:
diff --git a/tooling/scripts/validate-github-workflows.groovy b/tooling/scripts/validate-github-workflows.groovy
index f45faeb..035f5ed 100644
--- a/tooling/scripts/validate-github-workflows.groovy
+++ b/tooling/scripts/validate-github-workflows.groovy
@@ -30,7 +30,13 @@ 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 = ['fhir', 'hystrix', 'kubernetes', 'support'] as List
+final List<String> excludedModules = [
+    'fhir', 
+    'hystrix', 
+    'kubernetes', 
+    'support',
+    'ssh', // https://github.com/apache/camel-quarkus/issues/2212
+    ] as List
 
 final Yaml parser = new Yaml()
 def testCategoryConfig = parser.load((jobDefPath.toFile()).text)