Skip to content

Commit d760114

Browse files
Add diagnostics to determinism workflow for debugging
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent eeaeb1a commit d760114

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/determinism.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@ jobs:
2828
- name: Clone test data
2929
run: git clone --depth 1 https://github.com/MS2Community/MapleStory2-XML.git test-data
3030

31+
- name: Diagnose test data
32+
shell: bash
33+
run: |
34+
echo "=== File count ==="
35+
find test-data/Server -type f | wc -l
36+
echo "=== First 10 files (sorted) ==="
37+
find test-data/Server -type f | sort | head -10
38+
echo "=== Sample file hash (raw) ==="
39+
sha256sum test-data/Server/AI/AI_Anos.xml
40+
echo "=== Sample file size ==="
41+
wc -c test-data/Server/AI/AI_Anos.xml
42+
echo "=== Sample file line endings ==="
43+
xxd test-data/Server/AI/AI_Anos.xml | head -3
44+
3145
- name: Build
3246
run: dotnet build MS2Tools.sln -c Release
3347

0 commit comments

Comments
 (0)