Skip to content

Commit 110c9e2

Browse files
authored
Fix workflows to remove scores (#55)
1 parent 47d621b commit 110c9e2

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

.github/workflows/amd_workflow.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,6 @@ jobs:
9292
cat training.log # Debug: show output
9393
fi
9494
95-
- name: Extract score
96-
shell: bash
97-
run: |
98-
# Extract only the last occurrence of "score:"
99-
score=$(grep -oP 'score:\s*\d+(\.\d+)?' training.log | tail -n 1 | awk '{print $2}')
100-
101-
echo "Score extracted: $score"
102-
echo "::set-output name=score::$score"
103-
10495
- name: Upload training artifacts
10596
uses: actions/upload-artifact@v4
10697
if: always()

.github/workflows/nvidia_workflow.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,6 @@ jobs:
120120
cat training.log # Debug: show output
121121
fi
122122
123-
- name: Extract score
124-
shell: bash
125-
run: |
126-
# Extract only the last occurrence of "score:"
127-
score=$(grep -oP 'score:\s*\d+(\.\d+)?' training.log | tail -n 1 | awk '{print $2}')
128-
129-
echo "Score extracted: $score"
130-
echo "::set-output name=score::$score"
131-
132123
- name: Upload training artifacts
133124
uses: actions/upload-artifact@v4
134125
if: always()

0 commit comments

Comments
 (0)