forked from assertj/assertj
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (55 loc) · 2.23 KB
/
binary-compatibility.yml
File metadata and controls
67 lines (55 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Binary Compatibility
on:
pull_request:
paths:
- 'assertj-core/**'
push:
paths:
- 'assertj-core/**'
permissions: {}
env:
MAVEN_ARGS: -B -V -ntp -e -Djansi.passthrough=true -Dstyle.color=always -DskipTests
jobs:
verify-with-base:
name: Verify with target branch
runs-on: ubuntu-latest
if: github.base_ref != null
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'zulu'
java-version: '25'
cache: 'maven'
- name: Checkout `${{ github.base_ref }}` into subfolder
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.base_ref }}
path: ${{ github.run_id }}.${{ github.base_ref }}
- name: Build `${{ github.base_ref }}`
run: ./mvnw $MAVEN_ARGS -f ${{ github.run_id }}.${{ github.base_ref }}/assertj-core/pom.xml package
- name: Compare `${{ github.head_ref }}` with `${{ github.base_ref }}`
run: >
./mvnw $MAVEN_ARGS -f assertj-core/pom.xml -Pjapicmp-branch package japicmp:cmp
-Djapicmp.breakBuildOnBinaryIncompatibleModifications=true
-Djapicmp.oldVersion.basedir=${{ github.run_id }}.${{ github.base_ref }}/assertj-core
- name: Add result to job summary
if: success() || failure()
run: cat assertj-core/target/japicmp/default-cli.md >> $GITHUB_STEP_SUMMARY
verify-with-release:
name: Verify with latest release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'zulu'
java-version: '25'
cache: 'maven'
- name: Compare with the latest release
run: >
./mvnw $MAVEN_ARGS -f assertj-core/pom.xml package japicmp:cmp
-Djapicmp.breakBuildOnBinaryIncompatibleModifications=true
- name: Add result to job summary
if: success() || failure()
run: cat assertj-core/target/japicmp/default-cli.md >> $GITHUB_STEP_SUMMARY