Skip to content

Commit

Permalink
use temurin jdk in nightly-builds-latest-jdks.yml (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Oct 11, 2023
1 parent 0a09ccc commit 80d13b3
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions .github/workflows/nightly-builds-latest-jdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Java 21
uses: actions/setup-java@v3
with:
distribution: zulu
distribution: temurin
java-version: 21

- name: Cache Coursier cache
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Setup Java 21
uses: actions/setup-java@v3
with:
distribution: zulu
distribution: temurin
java-version: 21

- name: Cache Coursier cache
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
- name: Setup Java ${{ matrix.javaVersion }}
uses: actions/setup-java@v3
with:
distribution: zulu
distribution: temurin
java-version: ${{ matrix.javaVersion }}

- name: Cache Coursier cache
Expand All @@ -142,20 +142,3 @@ jobs:
-Dpekko.test.tags.exclude=gh-exclude,timing \
-Dpekko.test.multi-in-test=false \
clean "+~ ${{ matrix.scalaVersion }} test" checkTestsHaveRun
# comment out test report until an apache or GitHub published action (action-surefire-report) can be found or added allowlist from INFRA
# - name: Test Reports
# # Makes it easier to spot failures instead of looking at the logs.
# if: ${{ failure() }}
# uses: marcospereira/action-surefire-report@v1
# with:
# report_paths: '**/target/test-reports/TEST-*.xml'
# fail_if_no_tests: false

# # Archive test results so we can do some diagnostics later
# - name: Upload test results
# uses: actions/upload-artifact@v2
# if: success() || failure() # run this step even if previous step failed
# with:
# name: test-results-${{ matrix.javaVersion }}-${{ matrix.scalaVersion }}
# path: '**/target/test-reports/TEST-*.xml'

0 comments on commit 80d13b3

Please sign in to comment.