From 143e25c39c965bc339a62aa32921e940946e0306 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Thu, 13 Jun 2024 10:43:50 +0200 Subject: [PATCH] Fixed Deploy job needs clause, to also require jdk8 job success --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddc6cb97..dd674dd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: report_paths: "**/target/surefire-reports/TEST*.xml" check_name: Unit Test Results for OpenJDK ${{ matrix.java }} on ${{ matrix.os }} - test_oracle: + test-oracle: name: Test Oracle JDK 8 with KCMS=${{ matrix.kcms }} runs-on: ubuntu-latest permissions: @@ -101,7 +101,7 @@ jobs: release: name: Deploy - needs: [ test, test_oracle ] + needs: [ test, test-jdk8, test-oracle ] if: github.ref == 'refs/heads/master' # only perform on latest master runs-on: ubuntu-latest steps: