This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 2dcd822554 [SYSTEMDS-3807] Fix code coverage by using jdk 11 on
ubuntu-latest
2dcd822554 is described below
commit 2dcd8225542cf0d68bf79ad8df80a0303ac5bed0
Author: Matthias Boehm <[email protected]>
AuthorDate: Fri Dec 13 08:34:46 2024 +0100
[SYSTEMDS-3807] Fix code coverage by using jdk 11 on ubuntu-latest
---
.github/workflows/javaTests.yml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/javaTests.yml b/.github/workflows/javaTests.yml
index 0c44d9c828..f58b4975c2 100644
--- a/.github/workflows/javaTests.yml
+++ b/.github/workflows/javaTests.yml
@@ -116,10 +116,12 @@ jobs:
determine_test_coverage:
name: Determine Test Coverage
- runs-on: ubuntu-latest
- needs: [
- java_tests
- ]
+ needs: [java_tests]
+ strategy:
+ matrix:
+ os: [ubuntu-latest]
+ java: [11]
+
steps:
- name: Checkout Repository
uses: actions/checkout@v4