Skip to content

Commit 45759a7

Browse files
jasonlizhengjianfunctionstackx
authored andcommitted
Fix GB300 eval artifact copy
1 parent 97fbd88 commit 45759a7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

runners/launch_gb300-nv.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,9 @@ if [[ "${RUN_EVAL:-false}" == "true" || "${EVAL_ONLY:-false}" == "true" ]]; then
379379
shopt -s nullglob
380380
for eval_file in "$EVAL_DIR"/*; do
381381
[ -f "$eval_file" ] || continue
382-
cp "$eval_file" "$GITHUB_WORKSPACE/"
382+
eval_dest="$GITHUB_WORKSPACE/$(basename "$eval_file")"
383+
rm -f "$eval_dest"
384+
cp "$eval_file" "$eval_dest"
383385
echo "Copied eval artifact: $(basename "$eval_file")"
384386
done
385387
shopt -u nullglob

0 commit comments

Comments
 (0)