[maven-release-plugin] prepare for next development iteration #3
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: Run all code checkers (style, static analysis, api versions etc.) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- master | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: maven | |
- name: run code checkers | |
env: | |
MAVEN_CONFIG: "-B -fae" | |
run: | | |
make install-notests | |
reproducible-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: maven | |
- name: run first build | |
env: | |
MAVEN_CONFIG: "-B -fae" | |
run: | | |
make install-notests | |
- name: compare builds | |
env: | |
MAVEN_CONFIG: "-B -fae -Dbasepom.test.skip=true" | |
run: | | |
make compare-reproducible |