You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/02/19 06:38:47 UTC

[camel-kafka-connector] 01/01: Add gh action for daily maven plugins IT

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

acosentino pushed a commit to branch it-action-maven-backport
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 4f7e2857058305ec26d69bcff5bc6baf4c5ba7e3
Author: Tadayoshi Sato <sa...@gmail.com>
AuthorDate: Fri Feb 19 14:07:25 2021 +0900

    Add gh action for daily maven plugins IT
    
    Follow up #166 #1019
---
 .github/workflows/maven-it.yaml | 65 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/.github/workflows/maven-it.yaml b/.github/workflows/maven-it.yaml
new file mode 100644
index 0000000..1456ce6
--- /dev/null
+++ b/.github/workflows/maven-it.yaml
@@ -0,0 +1,65 @@
+#
+# 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 Maven Plugins IT
+
+env:
+  MAVEN_ARGS: -V -ntp
+
+on:
+  schedule:
+    # Run at 0 during night
+    - cron:  '0 0 * * *'
+  workflow_dispatch:
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        java: [ '8', '11', '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 }}-m2
+      - name: Build model
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -DskipTests \
+            -pl :camel-kafka-connector-model \
+            clean install
+      - name: Run maven plugins itests
+        run: |
+          ./mvnw ${MAVEN_ARGS} \
+            -Pmaven-it \
+            -pl :camel-kafka-connector-generator-maven-plugin \
+            clean verify
+      - name: Archive test results
+        uses: actions/upload-artifact@v2
+        if: always()
+        with:
+          name: maven-it-java-${{ matrix.java }}
+          path: |
+            tooling/**/target/maven-it/
+            !tooling/**/target/maven-it/**/.m2/