* Capture build scans on ge.apache.org to benefit from deep build insights (#1) * Add Develocity plugin and configure it to publish to Apache Develocity instance * Add Develocity access token to CI jobs * Use convention plugin to configure Develocity * Add opt-in property * Revert "Add opt-in property" This reverts commit ff556b9764fd6b980b24082a3195ba3fbd22faf6. * Improve variable name * Use upper case i in CI abbreviation
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Binary Compatibility
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 1.0.x
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-binary-compatibility:
|
|
name: Check / Binary Compatibility
|
|
runs-on: ubuntu-20.04
|
|
if: github.repository == 'apache/pekko'
|
|
strategy:
|
|
fail-fast: false
|
|
env:
|
|
DEVELOCITY_ACCESS_TOKEN: ${{ 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: 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
|