49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: Binary Compatibility
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
tags:
|
|
- v2.6.*
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-binary-compatibility:
|
|
name: Check / Binary Compatibility
|
|
runs-on: ubuntu-20.04
|
|
if: github.repository == 'apache/incubator-pekko'
|
|
strategy:
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Java 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: temurin
|
|
java-version: 11
|
|
|
|
- name: Cache Coursier cache
|
|
uses: coursier/cache-action@v6.4.0
|
|
|
|
- name: Enable jvm-opts
|
|
run: cp .jvmopts-ci .jvmopts
|
|
|
|
- name: Compile code
|
|
run: sbt +compile
|
|
|
|
- name: Report MiMa Binary Issues
|
|
run: |-
|
|
sbt +mimaReportBinaryIssues
|
|
|
|
- name: Check correct MiMa filter directories
|
|
run: |
|
|
sbt checkMimaFilterDirectories
|