Timing sensitive tests #1383
This file contains hidden or 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: Akka-Default | |
| if: github.event.repository.fork == false | |
| steps: | |
| - name: Checkout Global Scripts | |
| uses: actions/checkout@v4 | |
| 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 | |
| # v4.1.1 | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
| with: | |
| fetch-depth: 0 | |
| - name: Cache Coursier cache | |
| # https://github.com/coursier/cache-action/releases | |
| # v7.0.0 | |
| uses: coursier/cache-action@bebeeb0e6f48ebad66d3783946588ecf43114433 | |
| - name: Set up JDK 11 | |
| # https://github.com/coursier/setup-action/releases | |
| # v1.3.5 | |
| uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
| 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 \ | |
| -Dakka.warn-on-no-license-key=false \ | |
| 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 | |
| secure: true | |
| username: ${{secrets.MAIL_USERNAME}} | |
| password: ${{secrets.MAIL_PASSWORD}} | |
| subject: "Failed: ${{ github.workflow }} / ${{ github.job }}" | |
| to: ${{secrets.MAIL_SEND_TO}} | |
| from: Akka CI | |
| body: | | |
| Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed! | |
| https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} |