Skip to content

Commit 1ec4480

Browse files
Try more things :-(
Who uses Windows anyway...
1 parent 40087c3 commit 1ec4480

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,20 @@ jobs:
3434
- name: Install dependencies (Windows)
3535
if: runner.os == 'Windows'
3636
run: |
37-
vcpkg install libiconv
37+
vcpkg install libiconv:x64-windows --triplet x64-windows
3838
echo "INCLUDE=C:\vcpkg\installed\x64-windows\include;$env:INCLUDE" >> $env:GITHUB_ENV
3939
echo "LIB=C:\vcpkg\installed\x64-windows\lib;$env:LIB" >> $env:GITHUB_ENV
40-
41-
# XXX: This seems very hacky
42-
echo "C:\vcpkg\installed\x64-windows\bin" >> $env:GITHUB_PATH
43-
4440
4541
- name: Install package
4642
run: |
4743
python -m pip install --upgrade pip
4844
pip install -e .
4945
46+
- name: Debug libiconv loc
47+
run: dir "C:\vcpkg\installed\x64-windows\bin"
48+
5049
- name: Run tests
5150
run: |
51+
# XXX: This seems very hacky
52+
$env:PATH = "C:\vcpkg\installed\x64-windows\bin;$env:PATH"
5253
python -m unittest -v

0 commit comments

Comments
 (0)