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.git
The following commit(s) were added to refs/heads/main by this push:
new 4d6f19fdad Temporarily point quarkus-main CI workflows to
testcontainers-2.x camel-quarkus-examples branch
4d6f19fdad is described below
commit 4d6f19fdad6dac1affeb08f8e3f9dffa3fe971df
Author: James Netherton <[email protected]>
AuthorDate: Tue Dec 9 07:11:47 2025 +0000
Temporarily point quarkus-main CI workflows to testcontainers-2.x
camel-quarkus-examples branch
---
.github/workflows/ci-build.yaml | 3 +++
.github/workflows/quarkus-master-cron.yaml | 4 +++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 71f27e10b3..452f058221 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -603,6 +603,9 @@ jobs:
EXAMPLES_BRANCH=${GITHUB_REF_NAME}
elif [[ ${GITHUB_BASE_REF} =~ [0-9]+.[0-9]+.x ]]; then
EXAMPLES_BRANCH=${GITHUB_BASE_REF}
+ elif [[ ${GITHUB_REF_NAME} == "quarkus-main" || ${GITHUB_BASE_REF}
== "quarkus-main" ]]; then
+ # TODO: Remove this elif clause -
https://github.com/apache/camel-quarkus/issues/8049
+ EXAMPLES_BRANCH=testcontainers-2.x
fi
git clone --depth 1 --branch ${EXAMPLES_BRANCH}
https://github.com/apache/camel-quarkus-examples.git \
diff --git a/.github/workflows/quarkus-master-cron.yaml
b/.github/workflows/quarkus-master-cron.yaml
index f88ff1c25b..9bf1bd1426 100644
--- a/.github/workflows/quarkus-master-cron.yaml
+++ b/.github/workflows/quarkus-master-cron.yaml
@@ -533,7 +533,9 @@ jobs:
EXAMPLE_MODULES: ${{matrix.examples}}
shell: '/usr/bin/bash {0}'
run: |
- EXAMPLES_BRANCH="camel-quarkus-main"
+ # TODO: Restore camel-quarkus-main branch -
https://github.com/apache/camel-quarkus/issues/8049
+ EXAMPLES_BRANCH="testcontainers-2.x"
+ # EXAMPLES_BRANCH="camel-quarkus-main"
if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.x ]]; then
EXAMPLES_BRANCH=${GITHUB_REF_NAME}