CI Nightly #273
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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. | |
| # | |
| # This build runs every 6 hours. It runs the same tests as ci-quick.yaml but on a schedule (4 times a day). | |
| # The goal here is to run the same as ci-quick.yaml but on a schedule to make sure we catch any issue that may be | |
| # introduced in the main branch as soon as possible. | |
| # This build is also used to validate the build on various os (Ubuntu, Windows, MacOS) and various Java versions (17, 21, 25) | |
| # on a regular basis to make sure we catch any issue that may be introduced by a change in the build or in the dependencies. | |
| # | |
| name: CI Nightly | |
| on: | |
| schedule: | |
| - cron: '0 */6 * * *' | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-24.04, ubuntu-22.04, macos-26, macos-15, windows-2025, windows-2022 ] | |
| java-version: [ 17, 21 ] | |
| 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: | |
| name: test | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-24.04, ubuntu-22.04, macos-26, macos-15, windows-2025, windows-2022 ] | |
| java-version: [ 17, 21, 25 ] | |
| 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 | |
| shell: bash | |
| run: mvn -B -e -fae verify -Pactivemq.tests-quick -Dsurefire.rerunFailingTestsCount=3 | |
| - name: Upload Test Results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-${{ matrix.os }}-java${{ matrix.java-version }} | |
| path: '**/target/surefire-reports/*.xml' | |
| - name: Publish Test Results | |
| if: runner.os == 'Linux' | |
| uses: EnricoMi/publish-unit-test-result-action@v2 | |
| with: | |
| large_files: true | |
| report_individual_runs: true | |
| report_suite_logs: error | |
| check_name: Test Results (${{ matrix.os }}, Java ${{ matrix.java-version }}) | |
| files: '**/target/surefire-reports/*.xml' |