Skip to content

Commit

Permalink
7903363: JOL: Update pre-integration testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
shipilev authored Oct 18, 2022
1 parent 153c155 commit 247f12a
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/pre-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [8, 11, 17, 19-ea]
os: [ubuntu-20.04, windows-2022, macos-11]
java: [8, 11, 17, 19, 20-ea]
os: [ubuntu-22.04, windows-2022, macos-11]
fail-fast: false
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml', '.github/workflows/pre-integration.yml') }}
restore-keys: ${{ runner.os }}-maven
cache: maven
- name: Build all without tests
run: mvn clean install -DskipTests -B --file pom.xml
- name: Run tests
Expand Down

0 comments on commit 247f12a

Please sign in to comment.