Skip to content

Commit a5393bf

Browse files
authored
runner-0.0.20: DLE instead of PTDB (#2691)
Fixes #2592 for CI runners except performance runners.
1 parent e33285b commit a5393bf

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/auto-update-translator-cid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on:
1616
- max1100
1717
- rolling
18-
- runner-0.0.19
18+
- runner-0.0.20
1919
defaults:
2020
run:
2121
shell: bash -noprofile --norc -eo pipefail -c "source /opt/intel/oneapi/setvars.sh > /dev/null; source {0}"

.github/workflows/bandit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on:
1212
- max1100
1313
- rolling
14-
- runner-0.0.19
14+
- runner-0.0.20
1515
defaults:
1616
run:
1717
shell: bash

.github/workflows/build-test-reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ on:
5555
runner_version:
5656
description: Runner label for version
5757
type: string
58-
default: runner-0.0.19
58+
default: runner-0.0.20
5959

6060
permissions: read-all
6161

.github/workflows/conda-test-reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ on:
5555
runner_version:
5656
description: Runner label for version
5757
type: string
58-
default: runner-0.0.19
58+
default: runner-0.0.20
5959
env_manager:
6060
description: Environment manager
6161
default: conda
@@ -82,7 +82,7 @@ jobs:
8282
id: conda-cache
8383
uses: ./.github/actions/load
8484
env:
85-
CACHE_NUMBER: 6
85+
CACHE_NUMBER: 7
8686
with:
8787
path: $HOME/miniforge3/envs/triton
8888
key: conda-${{ inputs.env_manager }}-py${{ matrix.python }}-${{ hashFiles('scripts/triton.yml', 'python/pyproject.toml', 'python/setup.py') }}-${{ env.CACHE_NUMBER }}

.github/workflows/nightly-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on:
1717
- max1100
1818
- rolling
19-
- runner-0.0.19
19+
- runner-0.0.20
2020
strategy:
2121
matrix:
2222
python:

.github/workflows/no-basekit-build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on:
1818
- max1100
1919
- rolling
20-
- runner-0.0.19
20+
- runner-0.0.20
2121
strategy:
2222
matrix:
2323
python: ${{ github.ref_name == 'main' && fromJson('["3.9", "3.10", "3.11"]') || fromJson('["3.9"]') }}

scripts/install-conda.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
link_sycl() {
44
mkdir -p $HOME/miniforge3/envs/triton/$1
5-
ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl $HOME/miniforge3/envs/triton/$1/
6-
ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl/CL $HOME/miniforge3/envs/triton/$1/
5+
ln -snf /opt/intel/oneapi/compiler/latest/include/sycl $HOME/miniforge3/envs/triton/$1/
6+
ln -snf /opt/intel/oneapi/compiler/latest/include/sycl/CL $HOME/miniforge3/envs/triton/$1/
77
}
88

99
install_env() {

0 commit comments

Comments
 (0)