Update test-hosted-runners.yml

This commit is contained in:
Fabian Aguilar Gomez
2024-09-09 15:23:36 -05:00
committed by GitHub
parent a5aa90da21
commit a16f4a08dd

View File

@@ -45,7 +45,13 @@ jobs:
shell: bash shell: bash
- name: Compare files - name: Compare files
run: diff -qr artifact artifact2 run: |
diff_output=$(diff -qr artifact artifact2 | grep -v -e '.hidden' -e 'subdir/.hidden_also')
if [ -n "$diff_output" ]; then
echo "Unexpected differences found:"
echo "$diff_output"
exit 1
fi
shell: bash shell: bash
- name: Check for absence of symlinks - name: Check for absence of symlinks