Skip to content

Commit deff49f

Browse files
committed
cleanup
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 53a3db1 commit deff49f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/setup-pytorch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ runs:
7474
run: |
7575
ONEAPI_LINK=$(readlink /opt/intel/oneapi || true)
7676
ONEAPI_KEY=$(sha256sum /opt/intel/installed.txt 2> /dev/null | cut -d\ -f1 || true)
77-
PYTORCH_CACHE_KEY=$(echo "dle2" $PYTHON_VERSION $PYTORCH_COMMIT_ID ${{ hashFiles('scripts/patch-pytorch.sh') }} ${{ inputs.mode }}${ONEAPI_KEY}${ONEAPI_LINK} | sha256sum - | cut -d\ -f1)
77+
PYTORCH_CACHE_KEY=$(echo $PYTHON_VERSION $PYTORCH_COMMIT_ID ${{ hashFiles('scripts/patch-pytorch.sh') }} ${{ inputs.mode }}${ONEAPI_KEY}${ONEAPI_LINK} | sha256sum - | cut -d\ -f1)
7878
echo "PYTORCH_CACHE_KEY=$PYTORCH_CACHE_KEY" | tee -a "$GITHUB_ENV"
7979
8080
- name: Load PyTorch from a cache

.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.23
58+
default: runner-0.0.22
5959
use_pyenv_python:
6060
description: Use Python built with pyenv
6161
type: boolean

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
matrix:
110110
python:
111111
- "3.10"
112-
driver: ${{ fromJson((inputs.runner_label || '') == '' && '["lts2"]' || '["rolling"]') }}
112+
driver: ${{ fromJson((inputs.runner_label || '') == '' && '["rolling", "lts"]' || '["rolling"]') }}
113113

114114
uses: ./.github/workflows/build-test-reusable.yml
115115
with:

0 commit comments

Comments
 (0)