Skip to content

fix: send matching number of flush acks on large message stream (#32964) #400

fix: send matching number of flush acks on large message stream (#32964)

fix: send matching number of flush acks on large message stream (#32964) #400

Workflow file for this run

name: Check samples
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ci-${{ github.ref }}
cancel-in-progress: true
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-samples:
name: Check Sample Projects
needs: changes
if: needs.changes.outputs.release_prep_only != 'true'
runs-on: Akka-Default
env:
SCALA3_VERSION: 3.3.7
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:
fetch-depth: 0
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Cache Coursier cache
# https://github.com/coursier/cache-action/releases
uses: coursier/cache-action@v8.1.0
- name: Set up JDK 17
# https://github.com/coursier/setup-action/releases
uses: coursier/setup-action@v3.0.0
with:
jvm: temurin:1.17
- name: Gather version
# some cleanup of the sbt output to get the version sbt will use when publishing below
run: |-
sbt --no-colors "print akka-actor/version" | tail -n 1 | tr -d '\n' > ~/.version
echo [$(cat ~/.version)]
# useful for debugging: hexdump -c ~/.version
- name: Publish artifacts locally
run: |-
sbt "+publishLocal; publishM2"
- name: Test akka-quickstart-java
run: |-
cd samples/akka-quickstart-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-quickstart-scala
run: |-
cd samples/akka-quickstart-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-cluster-java
run: |-
cd samples/akka-sample-cluster-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-cluster-scala
run: |-
cd samples/akka-sample-cluster-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-distributed-data-java
run: |-
cd samples/akka-sample-distributed-data-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
sbt test multi-jvm:test -Dakka.version=`cat ~/.version`
- name: Test akka-sample-distributed-data-scala
run: |-
cd samples/akka-sample-distributed-data-scala
sbt test multi-jvm:test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test; multi-jvm:test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-fsm-java
run: |-
cd samples/akka-sample-fsm-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-fsm-scala
run: |-
cd samples/akka-sample-fsm-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-sharding-java
run: |-
cd samples/akka-sample-sharding-java
mvn test -nsu -ntp -Dakka.version=`cat ~/.version`
- name: Test akka-sample-sharding-scala
run: |-
cd samples/akka-sample-sharding-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Test akka-sample-kafka-to-sharding-scala
run: |-
cd samples/akka-sample-kafka-to-sharding-scala
sbt test -Dakka.version=`cat ~/.version`
sbt "clean; ++${SCALA3_VERSION}!; test" -Dakka.version=`cat ~/.version`
- name: Email on failure
if: ${{ failure() }}
uses: dawidd6/action-send-mail@v12
with:
server_address: smtp.gmail.com
server_port: 465
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}}