Skip to content

Commit 57a79a3

Browse files
committed
fix(ci): use relative path for TZIF_DATA_PATH on Windows
1 parent 54835ae commit 57a79a3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/windows-ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,14 @@ jobs:
113113
- name: Run integration tests
114114
shell: bash
115115
env:
116-
# Add trailing backslash to prevent tzif from adding forward slash
117-
TZIF_DATA_PATH: ${{ github.workspace }}\data\tzif\20251105T093308Z\
116+
# Use relative path - absolute paths with drive letters cause issues
117+
TZIF_DATA_PATH: data/tzif/20251105T093308Z
118118
run: |
119119
echo "========================================"
120120
echo "Running Integration Tests"
121121
echo "========================================"
122122
echo "TZIF_DATA_PATH=$TZIF_DATA_PATH"
123+
echo "PWD=$(pwd)"
123124
./test/bin/integration_runner.exe
124125
echo "Integration tests complete"
125126

0 commit comments

Comments
 (0)