Skip to content

Commit d040d42

Browse files
committed
[devops] update comp test
1 parent a2942b8 commit d040d42

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/compatiblity_test_on_dispatch.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ jobs:
5353
options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/
5454
timeout-minutes: 200
5555
steps:
56+
- name: Clean cache
57+
run: |
58+
if [ -d "~/.triton" ]; then
59+
rm -rf ~/.triton
60+
fi
61+
5662
- name: Install dependencies
5763
run: |
5864
apt update && apt install -y cmake

.github/workflows/compatiblity_test_on_pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-run-test-${{ matrix.container }}
4848
cancel-in-progress: true
4949
steps:
50+
- name: Clean cache
51+
run: |
52+
if [ -d "~/.triton" ]; then
53+
rm -rf ~/.triton
54+
fi
55+
5056
- name: Install dependencies
5157
run: |
5258
apt update && apt install -y cmake

.github/workflows/compatiblity_test_on_schedule.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ jobs:
4141
options: --gpus all --rm -v /dev/shm -v /data/scratch/:/data/scratch/
4242
timeout-minutes: 200
4343
steps:
44+
- name: Clean cache
45+
run: |
46+
if [ -d "~/.triton" ]; then
47+
rm -rf ~/.triton
48+
fi
49+
4450
- name: Install dependencies
4551
run: |
4652
apt update && apt install -y cmake

0 commit comments

Comments
 (0)