We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82ef206 commit cf6e05bCopy full SHA for cf6e05b
1 file changed
.github/workflows/determinism.yml
@@ -31,9 +31,14 @@ jobs:
31
run: |
32
echo "File count:"
33
find test-data/Server -type f | wc -l
34
- echo "Sample file hash and size:"
+ echo "Sample file raw:"
35
sha256sum test-data/Server/AI/AI_Anos.xml || true
36
wc -c test-data/Server/AI/AI_Anos.xml || true
37
+ echo "Sample file after CRLF strip:"
38
+ tr -d '\r' < test-data/Server/AI/AI_Anos.xml | sha256sum
39
+ tr -d '\r' < test-data/Server/AI/AI_Anos.xml | wc -c
40
+ echo "All files combined hash after CRLF strip:"
41
+ find test-data/Server -type f | sort | while read f; do tr -d '\r' < "$f"; done | sha256sum
42
43
- name: Build
44
run: dotnet build MS2Tools.sln -c Release
0 commit comments