Skip to content

bump: lz4-java 1.11.1 #5604

bump: lz4-java 1.11.1

bump: lz4-java 1.11.1 #5604

name: Binary Compatibility
on:
pull_request:
push:
branches:
- main
tags:
- v2.6.*
- v2.7.*
permissions:
contents: read
jobs:
changes:
name: Detect changes
runs-on: Akka-Default
outputs:
release_prep_only: ${{ steps.filter.outputs.release_prep_only }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Detect release-prep-only changes
id: filter
uses: ./.github/actions/release-prep-only
check-binary-compatibility:
name: Binary Compatibility / Scala ${{ matrix.scalaVersion }}
needs: changes
runs-on: Akka-Default
if: |
github.event.repository.fork == false &&
needs.changes.outputs.release_prep_only != 'true'
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: Run akka/github-actions-scripts
uses: akka/github-actions-scripts/setup_global_resolver@main
- 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}}
binary-compatibility-result:
name: Check / Binary Compatibility
needs: [ changes, check-binary-compatibility ]
runs-on: Akka-Default
if: always()
steps:
- name: Verify matrix outcome
run: |
result="${{ needs.check-binary-compatibility.result }}"
prep="${{ needs.changes.outputs.release_prep_only }}"
if [[ "$result" == "success" ]] || { [[ "$result" == "skipped" ]] && [[ "$prep" == "true" ]]; }; then
echo "OK (matrix=$result, release_prep_only=$prep)"
else
echo "Failed: matrix=$result, release_prep_only=$prep"
exit 1
fi