Skip to content

perf: use StackWalker for logger class detection #5528

perf: use StackWalker for logger class detection

perf: use StackWalker for logger class detection #5528

name: Binary Compatibility
on:
pull_request:
push:
branches:
- main
tags:
- v2.6.*
- v2.7.*
permissions:
contents: read
jobs:
check-binary-compatibility:
name: Check / Binary Compatibility
runs-on: Akka-Default
if: github.event.repository.fork == false
strategy:
fail-fast: false
matrix:
# The versions of scala specified here are only used as `+~...`
# which ignores the PATCH portion of the version id. These Scala versions don't need
# to be fully defined here then since Akka build handles which patch version will be used.
scalaVersion: [ "2.13", "3.3" ]
steps:
- name: Checkout Global Scripts
uses: actions/checkout@v6
with:
repository: akka/github-actions-scripts
path: scripts
fetch-depth: 0
- name: Setup global resolver
run: |
chmod +x ./scripts/setup_global_resolver.sh
./scripts/setup_global_resolver.sh
- name: Checkout
# https://github.com/actions/checkout/releases
uses: actions/checkout@v6
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: Cache Coursier cache
# https://github.com/coursier/cache-action/releases
uses: coursier/cache-action@v8.1.0
- name: Set up JDK 25
# https://github.com/coursier/setup-action/releases
uses: coursier/setup-action@v3.0.0
with:
jvm: temurin:1.25
- name: compile
run: |-
cp .jvmopts-ci .jvmopts
sbt "+~ ${{ matrix.scalaVersion }} compile"
- name: Report MiMa Binary Issues
run: |-
sbt "+~ ${{ matrix.scalaVersion }} mimaReportBinaryIssues"
- name: Check correct MiMa filter directories
run: |
sbt checkMimaFilterDirectories
- name: Email on failure
if: ${{ github.event_name == 'push' && failure() }}
uses: dawidd6/action-send-mail@v12
with:
server_address: smtp.gmail.com
server_port: 465
# Using port 465 already sets `secure: true`
secure: true
username: ${{secrets.MAIL_USERNAME}}
password: ${{secrets.MAIL_PASSWORD}}
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
to: ${{secrets.MAIL_SEND_TO}}
from: "Akka CI <no-reply@akka.io>"
body: |
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}