Skip to content

Commit

Permalink
Add script to check in appropriate directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Angela P Wen committed Aug 3, 2022
1 parent f7a7ac1 commit f51da86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/debug-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ jobs:
LANGUAGES="cpp csharp go java javascript python"
for os in $OPERATING_SYSTEMS; do
for version in $VERSIONS; do
cd ./my-debug-artifacts-$os-$version
echo "Checking version $version on $os"
for language in $LANGUAGES; do
echo "Checking $language in $version on $os"
echo "Checking $language"
if [[ ! -f "$language.sarif" ]] ; then
echo "Missing a SARIF file for $language"
exit 1
Expand All @@ -76,6 +78,7 @@ jobs:
exit 1
fi
done
cd ..
done
done
env:
Expand Down

0 comments on commit f51da86

Please sign in to comment.