Skip to content

Commit

Permalink
Remove ls check, log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Angela P Wen committed Aug 3, 2022
1 parent f51da86 commit e16d085
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/debug-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ jobs:
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -R
- name: Check expected artifacts exist
shell: bash
run: |
Expand All @@ -62,9 +60,9 @@ jobs:
for os in $OPERATING_SYSTEMS; do
for version in $VERSIONS; do
cd ./my-debug-artifacts-$os-$version
echo "Checking version $version on $os"
echo "Artifacts from version $version on $os:"
for language in $LANGUAGES; do
echo "Checking $language"
echo "- Checking $language"
if [[ ! -f "$language.sarif" ]] ; then
echo "Missing a SARIF file for $language"
exit 1
Expand Down

0 comments on commit e16d085

Please sign in to comment.