Skip to content

Commit

Permalink
ccc
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Jan 11, 2025
1 parent c28777e commit 077ca67
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test-distros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Upload list results
uses: actions/upload-artifact@v3
with:
name: 1LIST.txt
name: results
path: results/1LIST.txt

- name: "Check ${{ matrix.config.os }} downloads 💿️"
Expand All @@ -166,11 +166,10 @@ jobs:
- name: "Display ${{ matrix.config.os }} results 📊"
run: |
cat results/1LIST.txt | grep ${{ matrix.config.os }}
RESULTS_FILE=results/${{ matrix.config.os }}.txt
WINDOWS=$(grep -c "windows-" results/${{ matrix.config.os }}.txt)
FAILED=$(grep -c ^FAIL results/${{ matrix.config.os }}.txt)
SKIPPED=$(grep -c ^SKIP results/${{ matrix.config.os }}.txt)
PASSED=$(grep -c ^PASS results/${{ matrix.config.os }}.txt)
WINDOWS=$(grep -c "windows-" < results/${{ matrix.config.os }}.txt)
FAILED=$(grep -c ^FAIL < results/${{ matrix.config.os }}.txt)
SKIPPED=$(grep -c ^SKIP < results/${{ matrix.config.os }}.txt)
PASSED=$(grep -c ^PASS < results/${{ matrix.config.os }}.txt)
CHECKED=$((WINDOWS + FAILED + SKIPPED + PASSED))
echo -e "\nResults: ${{ matrix.config.os }}"
echo -e "- CHECKED:\t${CHECKED}" >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 077ca67

Please sign in to comment.