Skip to content

Commit 5e58fb7

Browse files
committed
trying step instead of new workflow
1 parent e92bdbd commit 5e58fb7

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

.github/workflows/inductor.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,29 @@ jobs:
7777
# docker-image: nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
7878
run: |
7979
pytest -n 1 test/inductor/test_torchinductor.py
80-
- uses: TooMuch4U/runner-post-cleanup@v2.1
80+
- name: "cleanup"
8181
if: always()
82+
run: |
83+
pwd
84+
ls
85+
86+
if [ -d triton ]; then
87+
echo "triton removed"
88+
rm -r triton
89+
else
90+
echo "triton not removed"
91+
fi
92+
if [ -d pytorch ]; then
93+
echo "pytorch removed"
94+
rm -r pytorch
95+
else
96+
echo "pytorch not removed"
97+
fi
98+
if [ -d llvm-project ]; then
99+
echo "llvm-project removed"
100+
rm -r llvm-project
101+
else
102+
echo "llvm not removed"
103+
fi
104+
pwd
105+
ls

0 commit comments

Comments
 (0)