Timing sensitive tests #98
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
name: Timing sensitive tests | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
# scacap/action-surefire-report (see https://github.com/ScaCap/action-surefire-report/pull/88/files) | |
checks: write | |
pull-requests: write | |
jobs: | |
akka-timing-sensitive-tests: | |
name: Akka Tests taggedAs TimingTest | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'akka/akka' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11 | |
- name: sbt test | |
run: |- | |
cp .jvmopts-ci .jvmopts | |
sbt \ | |
-Djava.security.egd=file:/dev/./urandom \ | |
-Dakka.cluster.assert=on \ | |
-Dakka.test.timefactor=2 \ | |
-Dakka.actor.testkit.typed.timefactor=2 \ | |
-Dakka.test.tags.only=timing \ | |
-Dakka.log.timestamps=true \ | |
-Dakka.test.multi-in-test=false \ | |
-Dmultinode.XX:MetaspaceSize=128M \ | |
-Dmultinode.Xms256M \ | |
-Dmultinode.Xmx256M \ | |
-Dmultinode.XX:+AlwaysActAsServerClassMachine \ | |
clean test | |
- name: Test Reports | |
# Makes it easier to spot failures instead of looking at the logs. | |
if: ${{ failure() }} | |
# https://github.com/ScaCap/action-surefire-report/releases/ | |
# v1.0.13 | |
uses: scacap/action-surefire-report@482f012643ed0560e23ef605a79e8e87ca081648 | |
with: | |
report_paths: '**/target/test-reports/TEST-*.xml' | |
fail_if_no_tests: false | |
skip_publishing: true | |
- name: Email on failure | |
if: ${{ failure() }} | |
uses: dawidd6/action-send-mail@6063705cefe50cb915fc53bb06d4049cae2953b2 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{secrets.MAIL_USERNAME}} | |
password: ${{secrets.MAIL_PASSWORD}} | |
subject: "Failed: ${{ github.workflow }} / ${{ github.job }}" | |
to: ${{secrets.MAIL_SEND_TO}} | |
from: Akka CI (GHActions) | |
body: | | |
Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed! | |
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} |