Nightly Aeron Tests #707
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# license agreements; and to You under the Apache License, version 2.0: | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# This file is part of the Apache Pekko project, which was derived from Akka. | |
# | |
name: Nightly Aeron Tests | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
pekko-artery-aeron-tests: | |
name: Pekko Artery Aeron Tests | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'apache/pekko' | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
- remote/test remote-tests/test | |
- cluster/test cluster-typed/test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Setup Java 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Install sbt | |
uses: sbt/setup-sbt@v1 | |
- name: Cache Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Enable jvm-opts | |
run: cp .jvmopts-ci .jvmopts | |
- name: sbt ${{ matrix.command }} | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
# note that this is not running any multi-jvm tests because multi-in-test=false | |
run: |- | |
sbt \ | |
-Djava.security.egd=file:/dev/./urandom \ | |
-Dpekko.remote.artery.transport=aeron-udp \ | |
-Dpekko.test.timefactor=2 \ | |
-Dpekko.actor.testkit.typed.timefactor=2 \ | |
-Dpekko.test.tags.exclude=gh-exclude,gh-exclude-aeron,timing \ | |
-Dpekko.test.multi-in-test=false \ | |
-Dpekko.cluster.assert=on \ | |
-Dio.netty.leakDetection.level=PARANOID \ | |
-Daeron.dir=/opt/volumes/media-driver \ | |
-Daeron.term.buffer.length=33554432 \ | |
clean ${{ matrix.command }} |