Skip to content

Commit 66496b9

Browse files
authored
ci: remove Java setup from ci (#1450)
remove Java setup from ci
1 parent d5b7c18 commit 66496b9

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ on:
44
push:
55
branches:
66
- master
7-
- backports-v0.7.x
8-
- backports-v0.6.x
97
tags:
108
- v*.*.*
119
pull_request:
1210
branches:
1311
- master
14-
- backports-v0.7.x
15-
- backports-v0.6.x
1612
# Run daily at 0:01 UTC
1713
schedule:
1814
- cron: '1 0 * * *'
@@ -40,12 +36,10 @@ jobs:
4036
strategy:
4137
matrix:
4238
os: [ubuntu-latest, ubuntu-24.04-arm, macOS-latest, windows-latest]
43-
java-version: [17]
44-
java-distribution: ["corretto"]
4539
python-version: ["3.9", "3.13"]
4640
dask-client: ["with", "without"]
4741

48-
name: Test (${{ matrix.os }}) - py ${{ matrix.python-version }}, JDK${{ matrix.java-version }}, ${{ matrix.dask-client }} dask
42+
name: Test (${{ matrix.os }}) - py ${{ matrix.python-version }}, ${{ matrix.dask-client }} dask
4943

5044
steps:
5145
- uses: actions/checkout@v5
@@ -56,11 +50,6 @@ jobs:
5650
with:
5751
python-version: ${{ matrix.python-version }}
5852
activate-environment: true
59-
- name: Set up JDK ${{ matrix.java-distribution }}/${{ matrix.java-version }}
60-
uses: actions/setup-java@v5
61-
with:
62-
java-version: ${{ matrix.java-version }}
63-
distribution: ${{ matrix.java-distribution }}
6453

6554
- name: Set python test settings
6655
run: |
@@ -80,7 +69,6 @@ jobs:
8069
# install checked out coffea
8170
uv pip install -q '.[dev,parsl,dask]' --upgrade
8271
uv pip list
83-
java -version
8472
- name: Install dependencies (MacOS)
8573
if: matrix.os == 'macOS-latest'
8674
run: |
@@ -94,7 +82,6 @@ jobs:
9482
# install checked out coffea
9583
uv pip install -q '.[dev,dask]' --upgrade
9684
uv pip list
97-
java -version
9885
- name: Install dependencies (Windows)
9986
if: matrix.os == 'windows-latest'
10087
run: |
@@ -106,7 +93,6 @@ jobs:
10693
# install checked out coffea
10794
uv pip install -q '.[dev,dask]' --upgrade
10895
uv pip list
109-
java -version
11096
11197
- name: Start triton server with example model
11298
if: startsWith( matrix.os, 'ubuntu' )

0 commit comments

Comments
 (0)