PROTON-2845 Add API for message sections that uses Matcher types #404
This file contains 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
name: "Build" | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 11, 17, 21 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Install JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- name: Build & Test | |
run: mvn clean verify | |
- name: Archive Test Logs On Failure | |
if: failure() | |
run: tar -czvf surefire-reports-jdk-${{ matrix.java }}.tar.gz **/target/surefire-reports/* | |
- name: Upload Test Logs On Failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: surefire-reports-jdk-${{ matrix.java }} | |
path: surefire-reports-jdk-${{ matrix.java }}.tar.gz | |
- name: Javadoc etc | |
run: mvn clean verify -Papache-release -Dgpg.skip -DskipTests | |
- name: RAT check | |
run: mvn clean -Papache-release apache-rat:check | |