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

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


The following commit(s) were added to refs/heads/master by this push:
     new 47cac0e  Added new daily JDK 14 build on github actions
47cac0e is described below

commit 47cac0ea585322ac8ecd9529d3e095061db29bb6
Author: Otavio Rodolfo Piske <opi...@redhat.com>
AuthorDate: Thu Jan 21 09:29:23 2021 +0100

    Added new daily JDK 14 build on github actions
---
 .github/workflows/daily-jdk14-build.yml | 85 +++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/.github/workflows/daily-jdk14-build.yml 
b/.github/workflows/daily-jdk14-build.yml
new file mode 100644
index 0000000..38fd1eb
--- /dev/null
+++ b/.github/workflows/daily-jdk14-build.yml
@@ -0,0 +1,85 @@
+#
+# 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: Daily JDK 14 Build
+
+env:
+  MAVEN_ARGS: -V -ntp
+
+on:
+  schedule:
+    # Run every day at 2 am
+    - cron:  '0 2 * * *'
+  workflow_dispatch:
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '14' ]
+    steps:
+      - uses: actions/checkout@v1
+      - 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-
+      # 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
+      - name: archive logs
+        uses: actions/upload-artifact@v2
+        if: always()
+        with:
+          name: test-logs
+          path: tests/**/target/tests.log
\ No newline at end of file

Reply via email to