You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2020/10/13 13:57:08 UTC

[camel-kafka-connector] branch camel-master updated (d81d262 -> e32f612)

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

orpiske pushed a change to branch camel-master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


    from d81d262  Regen
     new 680ab3b  Added a new profile so that we can test w/ newer Strimzi versions
     new e32f612  Added GH actions to run the camel-master build using the Strimzi Next profile

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ...l => automatic-sync-camel-master-strimzi-next.yml} | 19 +++++--------------
 parent/pom.xml                                        | 12 ++++++++++++
 2 files changed, 17 insertions(+), 14 deletions(-)
 copy .github/workflows/{automatic-sync-camel-master.yml => automatic-sync-camel-master-strimzi-next.yml} (82%)


[camel-kafka-connector] 01/02: Added a new profile so that we can test w/ newer Strimzi versions

Posted by or...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 680ab3b1ccd4b12a90362fb5f60d21ade852230c
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Tue Oct 13 14:26:05 2020 +0200

    Added a new profile so that we can test w/ newer Strimzi versions
---
 parent/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/parent/pom.xml b/parent/pom.xml
index db0d1bd..8134cc4 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -506,6 +506,18 @@
 
     <profiles>
         <profile>
+            <id>strimzinext</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
+            <properties>
+                <kafka.version>2.6.0</kafka.version>
+                <itest.zookeeper.container.image>strimzi/kafka:0.20.0-rc1-kafka-2.6.0</itest.zookeeper.container.image>
+                <itest.strimzi.container.image>strimzi/kafka:0.20.0-rc1-kafka-2.6.0</itest.strimzi.container.image>
+                <kafka.instance.type>local-strimzi-container</kafka.instance.type>
+            </properties>
+        </profile>
+        <profile>
             <id>sourcecheck</id>
             <build>
                 <plugins>


[camel-kafka-connector] 02/02: Added GH actions to run the camel-master build using the Strimzi Next profile

Posted by or...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e32f612be2b918b7f5a643c39ed2e74a633132fd
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Tue Oct 13 14:54:04 2020 +0200

    Added GH actions to run the camel-master build using the Strimzi Next profile
---
 .../automatic-sync-camel-master-strimzi-next.yml   | 95 ++++++++++++++++++++++
 1 file changed, 95 insertions(+)

diff --git a/.github/workflows/automatic-sync-camel-master-strimzi-next.yml b/.github/workflows/automatic-sync-camel-master-strimzi-next.yml
new file mode 100644
index 0000000..a6179e9
--- /dev/null
+++ b/.github/workflows/automatic-sync-camel-master-strimzi-next.yml
@@ -0,0 +1,95 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+name: Sync Camel Kafka Connector camel-master Branch with Strimzi next
+
+env:
+  MAVEN_ARGS: -V -ntp -Pstrimzinext
+
+on:
+  schedule:
+    # Run at 3 AM every day
+    - cron:  '0 3 * * *'
+  workflow_dispatch:
+jobs:
+  build:
+    name: Sync Camel Kafka Connector camel-master Branch
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '11' ]
+    steps:
+      - name: Checkout Camel project
+        uses: actions/checkout@v2
+        with:
+          repository: apache/camel
+          ref: master
+          path: camel
+      - name: Set up JDK ${{ matrix.java }}
+        uses: AdoptOpenJDK/install-jdk@v1
+        with:
+          version: ${{ matrix.java }}
+      - name: Cache local Maven repository
+        uses: actions/cache@v2
+        with:
+          path: ~/.m2/repository
+          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+          restore-keys: |
+            ${{ runner.os }}-maven-
+      - name: Build Camel Project
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -DskipTests \
+            clean install
+        working-directory: ${{ github.workspace }}/camel
+      - name: Checkout camel-kafka-connector project
+        uses: actions/checkout@v2
+        with:
+          ref: camel-master
+          fetch-depth: 0
+      # first command builds the source check module,
+      - name: build tools
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -DskipTests \
+            -pl :parent \
+            -pl :camel-kafka-connector-aggregator \
+            -pl :camel-buildtools \
+            clean install
+      # second one source check and install :camel-kafka-connector-generator-maven-plugin
+      # this is needed to add maven plugin metadata to it,
+      - name: build connector-generator-plugin
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -Dcheckstyle.failOnViolation=true \
+            -Psourcecheck \
+            -DskipTests \
+            -pl :camel-kafka-connector-model \
+            -pl :camel-kafka-connector-generator-maven-plugin \
+            clean install
+      # third command source check everything else but :camel-kafka-connector-generator-maven-plugin
+      - name: build and itests
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -Dcheckstyle.failOnViolation=true \
+            -Psourcecheck \
+            -DskipIntegrationTests=false \
+            -Dhttp.keepAlive=false \
+            -Dmaven.wagon.http.pool=false \
+            -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
+            -pl '!:camel-kafka-connector-generator-maven-plugin' \
+            clean test
\ No newline at end of file