|
4 | 4 | push: |
5 | 5 | branches: |
6 | 6 | - master |
7 | | - - backports-v0.7.x |
8 | | - - backports-v0.6.x |
9 | 7 | tags: |
10 | 8 | - v*.*.* |
11 | 9 | pull_request: |
12 | 10 | branches: |
13 | 11 | - master |
14 | | - - backports-v0.7.x |
15 | | - - backports-v0.6.x |
16 | 12 | # Run daily at 0:01 UTC |
17 | 13 | schedule: |
18 | 14 | - cron: '1 0 * * *' |
@@ -40,12 +36,10 @@ jobs: |
40 | 36 | strategy: |
41 | 37 | matrix: |
42 | 38 | os: [ubuntu-latest, ubuntu-24.04-arm, macOS-latest, windows-latest] |
43 | | - java-version: [17] |
44 | | - java-distribution: ["corretto"] |
45 | 39 | python-version: ["3.9", "3.13"] |
46 | 40 | dask-client: ["with", "without"] |
47 | 41 |
|
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 |
49 | 43 |
|
50 | 44 | steps: |
51 | 45 | - uses: actions/checkout@v5 |
|
56 | 50 | with: |
57 | 51 | python-version: ${{ matrix.python-version }} |
58 | 52 | 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 }} |
64 | 53 |
|
65 | 54 | - name: Set python test settings |
66 | 55 | run: | |
|
80 | 69 | # install checked out coffea |
81 | 70 | uv pip install -q '.[dev,parsl,dask]' --upgrade |
82 | 71 | uv pip list |
83 | | - java -version |
84 | 72 | - name: Install dependencies (MacOS) |
85 | 73 | if: matrix.os == 'macOS-latest' |
86 | 74 | run: | |
|
94 | 82 | # install checked out coffea |
95 | 83 | uv pip install -q '.[dev,dask]' --upgrade |
96 | 84 | uv pip list |
97 | | - java -version |
98 | 85 | - name: Install dependencies (Windows) |
99 | 86 | if: matrix.os == 'windows-latest' |
100 | 87 | run: | |
|
106 | 93 | # install checked out coffea |
107 | 94 | uv pip install -q '.[dev,dask]' --upgrade |
108 | 95 | uv pip list |
109 | | - java -version |
110 | 96 |
|
111 | 97 | - name: Start triton server with example model |
112 | 98 | if: startsWith( matrix.os, 'ubuntu' ) |
|
0 commit comments