Skip to content

Commit 6eea17f

Browse files
committed
+sbt Validate mima on pull request
1 parent 0f4f9b1 commit 6eea17f

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Binary Compatibility
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ main ]
7+
tags-ignore: [ v* ]
8+
9+
concurrency:
10+
# Only run once for latest commit per ref and cancel other (previous) runs.
11+
group: ci-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
permissions: { }
15+
16+
jobs:
17+
check-binary-compatibility:
18+
name: Check / Binary Compatibility
19+
runs-on: ubuntu-20.04
20+
if: github.repository == 'apache/incubator-pekko-http'
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
SCALA_VERSION: [ 2.12, 2.13, 3.3 ]
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 0
30+
fetch-tags: 0
31+
32+
- name: Setup Java 11
33+
uses: actions/setup-java@v3
34+
with:
35+
distribution: temurin
36+
java-version: 11
37+
38+
- name: Cache Coursier cache
39+
uses: coursier/[email protected]
40+
41+
- name: Enable jvm-opts
42+
run: cp .jvmopts-ci .jvmopts
43+
44+
- name: Compile code
45+
run: sbt ++${{ matrix.SCALA_VERSION }} Test/compile
46+
47+
- name: Report MiMa Binary Issues with Scala ${{ matrix.SCALA_VERSION }}
48+
run: sbt -Dpekko.http.parallelExecution=false -Dpekko.test.timefactor=2 ++${{ matrix.SCALA_VERSION }} mimaReportBinaryIssues
49+
50+
- name: Check correct MiMa filter directories
51+
run: |
52+
sbt checkMimaFilterDirectories

0 commit comments

Comments
 (0)