-
Notifications
You must be signed in to change notification settings - Fork 149
55 lines (44 loc) · 1.17 KB
/
binary-compatibility-checks.yml
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
name: Binary Compatibility
on:
pull_request:
push:
branches:
- main
- 1.0.x
permissions: {}
jobs:
check-binary-compatibility:
name: Check / Binary Compatibility
runs-on: ubuntu-22.04
if: github.repository == 'apache/pekko'
strategy:
fail-fast: false
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: 0
- name: Setup Java 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Cache Coursier cache
uses: coursier/cache-action@v6
- name: Enable jvm-opts
run: cp .jvmopts-ci .jvmopts
- name: Compile code
run: sbt +compile
- name: Check if the dependency task in the built correctly
run: sbt dependWalkerCheck
- name: Report MiMa Binary Issues
run: |-
sbt +mimaReportBinaryIssues
- name: Check correct MiMa filter directories
run: |
sbt checkMimaFilterDirectories