Skip to content

Allow test Kafka Clusters to use SASL SCRAM-SHA and OAUTH bearer #993

Allow test Kafka Clusters to use SASL SCRAM-SHA and OAUTH bearer

Allow test Kafka Clusters to use SASL SCRAM-SHA and OAUTH bearer #993

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'
cache: 'maven'
- 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"