blob: 505b6681d8879bc08098e72d43e12355a83c6e05 [file] [log] [blame]
#
# 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: [ '11', '17' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build model
run: |
./mvnw ${MAVEN_ARGS} \
-DskipTests \
-pl :tooling \
-pl :camel-kafka-connector-model \
clean install
- name: Build core
run: |
./mvnw ${MAVEN_ARGS} \
-DskipTests \
-pl :camel-kafka-connector \
-am \
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/