Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 #903

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4 #903

Workflow file for this run

#
# 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: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v4
with:
submodules: 'true'
- name: 'Set up Java'
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'zulu'
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: 'Build junit extension with maven tests'
run: mvn -B clean verify -Pci
- name: 'Run tests in containers'
run: TEST_CLUSTER_EXECUTION_MODE=CONTAINER KAFKA_VERSION=latest mvn -B clean verify -Dsurefire.failIfNoSpecifiedTests=false -Dtest=KafkaClusterTest
- name: Archive container logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: container-logs
path: "**/container-logs/**/*.log"