Skip to content

Commit 0ab971f

Browse files
committed
fix ci failed test
2 parents 9154e45 + db241e6 commit 0ab971f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ce-build-whl.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ jobs:
9696
for cuda in cu126 cu129 cu130; do
9797
python bos_tools.py $file paddle-whl/nightly/$cuda/paddleformers/
9898
echo "$file: https://paddle-whl.bj.bcebos.com/nightly/$cuda/paddleformers/$file"
99-
python3 notify_paddle_link.py $cuda $file
99+
if [[ ! "$file" =~ -0\.0\.0\. ]]; then
100+
python3 notify_paddle_link.py $cuda $file
101+
else
102+
echo "Skip notify for 0.0.0 wheel: $file"
103+
fi
100104
done
101105
done
102106
'

0 commit comments

Comments
 (0)