This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
omit e12f3d1 Disable anotra xref checks due to #2226 omit eefd29a Add Camel 3.8.0 staging repository omit 9ac1dd8 CassandraQL native support #1355 omit 150aba8 nats: added a README.adoc file in the test module to explain the TLS test manual activation #2061 omit 3641f17 Made nats TLS auth tests optional fixes #2211 omit a9d02ed add HazelcastReplicatedmapConsumer test fixes #2095 omit 415fcb2 Allow to reset build taken for native builds that are super fast. omit 6ef755d Upgrade to Camel 3.8.0 add 1d18f53 Upgrade to Camel 3.8.0 add 7535bb8 Allow to reset build taken for native builds that are super fast. add eba5832 add HazelcastReplicatedmapConsumer test fixes #2095 add 0b0b5ff Made nats TLS auth tests optional fixes #2211 add 9ca8452 nats: added a README.adoc file in the test module to explain the TLS test manual activation #2061 add f7bccef CassandraQL native support #1355 add d7850c9 Add Camel 3.8.0 staging repository add 433dbf5 Disable anotra xref checks due to #2226 add f226472 Ensure integration tests have enough free disk space add 9c38141 Use Java 15 as 14 is EOL add ca08206 Aws2TestEnvCustomizer SPI to allow running AWS 2 tests both isolated and dynamically grouped into one module add 290eade Allow running AWS 2 tests both grouped and isolated add d1bc390 Upgrade to Quarkus 1.12.0.CR1 add 2f62a7a Disable azure itest native builds until issues are fixed: add 349a86e Azure EventHubs native build fails with Quarkus 1.12 #2204 add 98669e4 Workaround for #2207 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (e12f3d1) \ N -- N -- N refs/heads/camel-master (98669e4) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .github/workflows/ci-build.yaml | 14 +- .../deployment/ReactorNettySupportProcessor.java | 3 + .../aws2-s3/README.adoc | 0 .../aws2-s3/pom.xml | 14 +- .../quarkus/component/aws2/Aws2S3Resource.java | 0 .../src/main/resources/application.properties | 0 .../camel/quarkus/component/aws2/Aws2S3IT.java | 0 .../camel/quarkus/component/aws2/Aws2S3Test.java | 3 +- .../component/aws2/Aws2S3TestEnvCustomizer.java | 46 +++++++ ...quarkus.test.support.aws2.Aws2TestEnvCustomizer | 1 + .../aws2-sqs-sns/README.adoc | 0 .../aws2-sqs-sns/pom.xml | 2 +- .../component/aws2/sqs/it/Aws2SqsSnsResource.java | 2 +- .../src/main/resources/application.properties | 0 .../component/aws2/sqs/it/Aws2SqsSnsIT.java | 2 +- .../component/aws2/sqs/it/Aws2SqsSnsTest.java | 5 +- .../aws2/sqs/it/Aws2SqsSnsTestEnvCustomizer.java | 66 +++------ ...quarkus.test.support.aws2.Aws2TestEnvCustomizer | 1 + .../pom.xml | 18 ++- integration-tests-support/aws2/pom.xml | 12 ++ .../test/support/aws2/Aws2TestEnvContext.java | 150 +++++++++++++++++++++ .../test/support/aws2/Aws2TestEnvCustomizer.java | 27 ++-- .../test/support/aws2/Aws2TestResource.java | 97 ++++--------- integration-tests/aws2-grouped/README.adoc | 19 +++ integration-tests/{core => aws2-grouped}/pom.xml | 139 +++++++++++++------ .../quarkus/component/aws2/Aws2S3TestResource.java | 66 --------- integration-tests/azure-eventhubs/pom.xml | 7 + integration-tests/azure-storage-blob/pom.xml | 7 + integration-tests/azure-storage-queue/pom.xml | 7 + integration-tests/main-command-mode/pom.xml | 3 +- integration-tests/master/pom.xml | 3 +- integration-tests/pom.xml | 3 +- pom.xml | 10 +- tooling/scripts/group-tests.groovy | 50 +++++++ tooling/scripts/test-categories.yaml | 3 +- 35 files changed, 522 insertions(+), 258 deletions(-) rename {integration-tests => integration-tests-aws2}/aws2-s3/README.adoc (100%) rename {integration-tests => integration-tests-aws2}/aws2-s3/pom.xml (91%) rename {integration-tests => integration-tests-aws2}/aws2-s3/src/main/java/org/apache/camel/quarkus/component/aws2/Aws2S3Resource.java (100%) rename {integration-tests => integration-tests-aws2}/aws2-s3/src/main/resources/application.properties (100%) rename {integration-tests => integration-tests-aws2}/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/Aws2S3IT.java (100%) rename {integration-tests => integration-tests-aws2}/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/Aws2S3Test.java (97%) create mode 100644 integration-tests-aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/Aws2S3TestEnvCustomizer.java create mode 100644 integration-tests-aws2/aws2-s3/src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer rename {integration-tests => integration-tests-aws2}/aws2-sqs-sns/README.adoc (100%) rename {integration-tests => integration-tests-aws2}/aws2-sqs-sns/pom.xml (98%) rename integration-tests/aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java => integration-tests-aws2/aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsResource.java (99%) rename {integration-tests => integration-tests-aws2}/aws2-sqs-sns/src/main/resources/application.properties (100%) rename integration-tests/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java => integration-tests-aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsIT.java (96%) rename integration-tests/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java => integration-tests-aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsTest.java (95%) rename integration-tests/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestResource.java => integration-tests-aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsTestEnvCustomizer.java (67%) create mode 100644 integration-tests-aws2/aws2-sqs-sns/src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer copy {extensions/mongodb-gridfs => integration-tests-aws2}/pom.xml (73%) create mode 100644 integration-tests-support/aws2/src/main/java/org/apache/camel/quarkus/test/support/aws2/Aws2TestEnvContext.java copy extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/DisabledModelJAXBContextFactory.java => integration-tests-support/aws2/src/main/java/org/apache/camel/quarkus/test/support/aws2/Aws2TestEnvCustomizer.java (57%) create mode 100644 integration-tests/aws2-grouped/README.adoc copy integration-tests/{core => aws2-grouped}/pom.xml (54%) delete mode 100644 integration-tests/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/Aws2S3TestResource.java create mode 100644 tooling/scripts/group-tests.groovy