Skip to content

Commit

Permalink
run extra tests that need Java 9+ (#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Aug 9, 2024
1 parent 392a05c commit e1b4915
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build-test-prValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,43 @@ jobs:
-Dsbt.log.noformat=false \
-Dpekko.log.timestamps=true \
validatePullRequest
jdk-21-extra-tests:
name: Java 21 Extra Tests (including all tests that need Java 9+)
runs-on: ubuntu-20.04
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
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: 0

- name: Setup Java 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- name: Cache Coursier cache
uses: coursier/cache-action@v6

- name: Enable jvm-opts
run: cp .jvmopts-ci .jvmopts

- name: sbt TestJdk9/test
run: |-
sbt \
-Dpekko.mima.enabled=false \
-Dpekko.test.multi-in-test=false \
-Dpekko.test.timefactor=2 \
-Dpekko.actor.testkit.typed.timefactor=2 \
-Dpekko.test.tags.exclude=gh-exclude,timing \
-Dpekko.cluster.assert=on \
-Dsbt.override.build.repos=false \
-Dpekko.test.multi-node=false \
-Dsbt.log.noformat=false \
-Dpekko.log.timestamps=true \
TestJdk9/test

0 comments on commit e1b4915

Please sign in to comment.