Skip to content

Use of GitHub Actions, and enable dependabot #13

Use of GitHub Actions, and enable dependabot

Use of GitHub Actions, and enable dependabot #13

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", "activemq-6.1.x", "activemq-5.19.x" ]
pull_request:
branches: [ "main", "activemq-6.1.x", "activemq-5.19.x" ]
jobs:
build:
permissions:
contents: read
strategy:
matrix:
os: [ ubuntu-24.04, ubuntu-22.04, macos-26, macos-15, macos-14, macos-13, windows-2025, windows-2022 ]
java-version: [ 17, 21, 24 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
- name: Build
run: mvn -U -B -e clean install -DskipTests
- name: Verify
run: mvn apache-rat:check
test:
permissions:
contents: read
strategy:
matrix:
os: [ ubuntu-24.04, ubuntu-22.04, macos-26, macos-15, macos-14, macos-13, windows-2025, windows-2022 ]
java-version: [ 17 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
- name: Test
run: mvn -B -e -fae test "-Dsurefire.rerunFailingTestsCount=3"
env:
MAVEN_OPTS: "-Xms8g -Xmx8g -XX:MaxDirectMemorySize=4096m"