style: white space clean up in test-quickget.yml
This commit is contained in:
parent
182a0c11e7
commit
79c0486aad
|
@ -38,7 +38,6 @@ jobs:
|
||||||
./quickget --list | tee -a results/supported.txt
|
./quickget --list | tee -a results/supported.txt
|
||||||
echo -e "\n\nAll supported OS variants: $(cat results/supported.txt | wc -l)"
|
echo -e "\n\nAll supported OS variants: $(cat results/supported.txt | wc -l)"
|
||||||
echo -e "\n\n Finished\n\n"
|
echo -e "\n\n Finished\n\n"
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: supported
|
name: supported
|
||||||
|
@ -60,7 +59,6 @@ jobs:
|
||||||
done
|
done
|
||||||
echo -e "\n\nHomepages aka number of supported OS (os_info): $(cat results/infos.txt | grep 'http' | wc -l)"
|
echo -e "\n\nHomepages aka number of supported OS (os_info): $(cat results/infos.txt | grep 'http' | wc -l)"
|
||||||
echo -e "\n\n Finished\n\n"
|
echo -e "\n\n Finished\n\n"
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: infos
|
name: infos
|
||||||
|
@ -79,7 +77,6 @@ jobs:
|
||||||
mkdir -p results
|
mkdir -p results
|
||||||
./quickget -u | tee -a url.txt
|
./quickget -u | tee -a url.txt
|
||||||
cat url.txt | sort > results/urls.txt
|
cat url.txt | sort > results/urls.txt
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: results
|
path: results
|
||||||
|
@ -89,7 +86,6 @@ jobs:
|
||||||
ls -R results/
|
ls -R results/
|
||||||
echo -e "\n\nFounded/All URLs: $(cat results/urls.txt | grep 'http' | wc -l)/$(cat results/supported.txt | wc -l)"
|
echo -e "\n\nFounded/All URLs: $(cat results/urls.txt | grep 'http' | wc -l)/$(cat results/supported.txt | wc -l)"
|
||||||
echo -e "\n\n Finished\n\n"
|
echo -e "\n\n Finished\n\n"
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: urls
|
name: urls
|
||||||
|
@ -120,12 +116,10 @@ jobs:
|
||||||
echo "Checked/known URLs: $CHECKED/$ALL with skipped Windows
|
echo "Checked/known URLs: $CHECKED/$ALL with skipped Windows
|
||||||
echo -e "Failed:\n$(grep 'FAIL:' results/checks.txt | tee -a results/failed.txt)"
|
echo -e "Failed:\n$(grep 'FAIL:' results/checks.txt | tee -a results/failed.txt)"
|
||||||
echo -e "\n\n Finished\n\n"
|
echo -e "\n\n Finished\n\n"
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: checks
|
name: checks
|
||||||
path: results/checks.txt
|
path: results/checks.txt
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: failed
|
name: failed
|
||||||
|
@ -143,7 +137,6 @@ jobs:
|
||||||
- name: List results
|
- name: List results
|
||||||
run: |
|
run: |
|
||||||
ls -R results/
|
ls -R results/
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
Loading…
Reference in New Issue