mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Fix the # of SKIP
This commit is contained in:
parent
c132535cf5
commit
20f6b6d0c5
1 changed files with 4 additions and 4 deletions
8
.github/workflows/CICD.yml
vendored
8
.github/workflows/CICD.yml
vendored
|
@ -784,10 +784,10 @@ jobs:
|
|||
printf "%s\n" "${output}"
|
||||
FAIL=$(echo "$output" | grep "^FAIL:\s" | wc --lines)
|
||||
PASS=$(echo "$output" | grep "^PASS:\s" | wc --lines)
|
||||
SKIPPED=$(echo "$output" | grep "^SKIPPED:\s" | wc --lines)
|
||||
TOTAL=`expr $FAIL + $PASS + $SKIPPED`
|
||||
SKIP=$(echo "$output" | grep "^SKIPPED:\s" | wc --lines)
|
||||
TOTAL=`expr $FAIL + $PASS + $SKIP`
|
||||
echo "FAIL $FAIL"
|
||||
echo "SKIP $SKIPPED"
|
||||
echo "SKIP $SKIP"
|
||||
echo "PASS $PASS"
|
||||
echo "TOTAL $TOTAL"
|
||||
cd -
|
||||
|
@ -799,7 +799,7 @@ jobs:
|
|||
--arg sha "$GITHUB_SHA" \
|
||||
--arg total "$TOTAL" \
|
||||
--arg pass "$PASS" \
|
||||
--arg skip "$SKIPPED" \
|
||||
--arg skip "$SKIP" \
|
||||
--arg fail "$FAIL" \
|
||||
'{($date): { sha: $sha, total: $total, pass: $pass, skip: $skip, fail: $fail, }}' > '${{ steps.vars.outputs.TEST_SUMMARY_FILE }}'
|
||||
HASH=$(sha1sum '${{ steps.vars.outputs.TEST_SUMMARY_FILE }}' | cut --delim=" " -f 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue