From 82e28a15f43723751a85ec457ad32034e4a0e210 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Thu, 31 Mar 2022 17:18:57 -0500 Subject: [PATCH] Build with Java 11 only --- .../workflows/continuous-integration-workflow.yml | 14 +++++++------- .github/workflows/pr-build-workflow.yml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 9318583e..abbd81b9 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -13,8 +13,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - jdk: [8,11,12] + os: [ubuntu-latest, windows-latest] + jdk: [11] fail-fast: false steps: - uses: actions/checkout@v2 @@ -32,7 +32,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v1 with: - java-version: 8 + java-version: 11 - name: Test run: echo Testing against snapshots sonar: @@ -43,7 +43,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v1 with: - java-version: 8 + java-version: 11 - name: Sonar run: echo Running Sonarqube static code analysis artifacts: @@ -55,7 +55,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v1 with: - java-version: 8 + java-version: 11 - name: Deploy Artifacts run: echo Deploying Artifacts docs: @@ -67,7 +67,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v1 with: - java-version: 8 + java-version: 11 - name: Deploy Docs run: echo Deploying Docs schema: @@ -79,6 +79,6 @@ jobs: - name: Set up JDK uses: actions/setup-java@v1 with: - java-version: 8 + java-version: 11 - name: Deploy Schema run: echo Deploying Schema diff --git a/.github/workflows/pr-build-workflow.yml b/.github/workflows/pr-build-workflow.yml index 36453bae..e9f32e60 100644 --- a/.github/workflows/pr-build-workflow.yml +++ b/.github/workflows/pr-build-workflow.yml @@ -11,8 +11,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - jdk: [8,11,12] + os: [ubuntu-latest, windows-latest] + jdk: [11] fail-fast: false steps: - uses: actions/checkout@v2