Skip to content

Commit f116482

Browse files
committed
[SYSTEMDS-3875] Java 17 Github Actions
1 parent 3810f14 commit f116482

File tree

11 files changed

+15
-20
lines changed

11 files changed

+15
-20
lines changed

.github/workflows/build-cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
]
4242
java: [
4343
# '8',
44-
'11',
44+
'17',
4545
# '16'
4646
]
4747
javadist: [

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
]
5656
java: [
5757
# '8',
58-
'11',
58+
'17',
5959
# '16'
6060
]
6161
javadist: [

.github/workflows/cleanup-transient-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
jobs:
3131
on-success:
3232
name: Delete transient artifacts of successful workflow
33-
runs-on: ubuntu-latest
33+
runs-on: ubuntu-24.04
3434
permissions:
3535
# write permissions required for deleting artifacts
3636
actions: write

.github/workflows/docker-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
jobs:
3030
build-nightly:
3131
if: github.repository == 'apache/systemds'
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-24.04
3333
strategy:
3434
matrix:
3535
include:

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ on:
3636
jobs:
3737
build-release:
3838
if: github.repository == 'apache/systemds'
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-24.04
4040

4141
steps:
4242
- name: Checkout

.github/workflows/docker-testImage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
build-test-image:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-24.04
3131
strategy:
3232
matrix:
3333
include:

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
os: [ubuntu-latest]
45-
java: ['11']
44+
os: [ubuntu-24.04]
45+
java: ['17']
4646
javadist: ['adopt']
4747
name: Java
4848
steps:

.github/workflows/javaTests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix:
51-
os: [ubuntu-22.04]
5251
tests: [
5352
"org.apache.sysds.test.applications.**",
5453
"**.test.usertest.**",
@@ -86,8 +85,6 @@ jobs:
8685
"**.functions.transform.**","**.functions.unique.**",
8786
"**.functions.unary.matrix.**,**.functions.linearization.**,**.functions.jmlc.**"
8887
]
89-
java: ['11']
90-
javadist: ['adopt']
9188
name: ${{ matrix.tests }}
9289
steps:
9390
- name: Checkout Repository
@@ -102,8 +99,6 @@ jobs:
10299
- name: Clean Github Artifact Name of Asterisks
103100
run: |
104101
ARTIFACT_NAME="transient_jacoco"
105-
ARTIFACT_NAME+="-${{ matrix.os }}"
106-
ARTIFACT_NAME+="-java-${{ matrix.java }}"
107102
ARTIFACT_NAME+="-${{ matrix.tests }}"
108103
ARTIFACT_NAME=${ARTIFACT_NAME//\*/x} # replace * with x
109104
echo "ARTIFACT_NAME=$ARTIFACT_NAME" >> $GITHUB_ENV
@@ -124,8 +119,8 @@ jobs:
124119
strategy:
125120
fail-fast: false
126121
matrix:
127-
os: [ubuntu-22.04]
128-
java: ['11']
122+
os: [ubuntu-24.04]
123+
java: ['17']
129124
javadist: ['adopt']
130125
steps:
131126
- name: Checkout Repository

.github/workflows/license.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix:
51-
os: [ubuntu-latest]
52-
java: ['11']
51+
os: [ubuntu-24.04]
52+
java: ['17']
5353
javadist: ['adopt']
5454

5555
steps:

.github/workflows/monitoringUITests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ on:
4545

4646
jobs:
4747
build:
48-
runs-on: ubuntu-latest
48+
runs-on: ubuntu-24.04
4949

5050
strategy:
5151
matrix:

0 commit comments

Comments
 (0)