This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/camel-main by this push:
new fb8a8d6 Temporarily disable building Camel Quarkus on GH actions
fb8a8d6 is described below
commit fb8a8d651341c43ee63a411b1f5f419194f78fb4
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Jun 3 10:16:55 2021 +0200
Temporarily disable building Camel Quarkus on GH actions
---
.github/workflows/ci-build-camel-main.yaml | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/ci-build-camel-main.yaml
b/.github/workflows/ci-build-camel-main.yaml
index b6fa7e5..3de0679 100644
--- a/.github/workflows/ci-build-camel-main.yaml
+++ b/.github/workflows/ci-build-camel-main.yaml
@@ -59,7 +59,7 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
-# For the time being (Camel 3.10 + Camel Quarkus 1.9) we remain aligned to
Camel 3.10
+# For the time being (Camel 3.10 + Camel Quarkus 2.0) we remain aligned to
Camel 3.10
# because that's what Camel Quarkus depends on. After that, we can re-enable
this.
# See: https://github.com/apache/camel-k-runtime/issues/669
# - name: Build camel (main)
@@ -68,11 +68,13 @@ jobs:
# && cd camel \
# && echo "Current Camel commit:" $(git rev-parse HEAD) \
# && ./mvnw ${MAVEN_ARGS} clean install -Pfastinstall
- - name: Build camel-quarkus (main)
- run: |
- git clone --depth 1 --branch main
https://github.com/apache/camel-quarkus.git \
- && cd camel-quarkus \
- && echo "Current Camel Quarkus commit:" $(git rev-parse HEAD) \
- && ./mvnw ${MAVEN_ARGS} clean install -Dquickly
+# We are currently building with Quarkus Snapshots from Apache repos, which is
why this
+# this temporarily disabled
+# - name: Build camel-quarkus (main)
+# run: |
+# git clone --depth 1 --branch main
https://github.com/apache/camel-quarkus.git \
+# && cd camel-quarkus \
+# && echo "Current Camel Quarkus commit:" $(git rev-parse HEAD) \
+# && ./mvnw ${MAVEN_ARGS} clean install -Dquickly
- name: Build camel-k-runtime
run: ./mvnw ${MAVEN_ARGS} -Dcheckstyle.failOnViolation=true
-Psourcecheck clean verify