Skip to content

Commit 93beb29

Browse files
Mirror humble
1 parent 9390ba5 commit 93beb29

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/testpr.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161
- name: Clean up PATH
6262
if: contains(matrix.os, 'windows')
6363
uses: egor-tensin/cleanup-path@v4
64-
# with:
64+
with:
6565
# cygpath in C:\Program Files\Git\usr\bin is used by install micromamba
6666
# git in C:\Program Files\Git\bin is used by pip install git+
67-
# dirs: 'C:\Program Files\Git\usr\bin;C:\Program Files\Git\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin'
67+
dirs: 'C:\Program Files\Git\usr\bin;C:\Program Files\Git\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin'
6868

6969
- shell: bash -l {0}
7070
if: matrix.platform == 'linux-aarch64'
@@ -84,11 +84,13 @@ jobs:
8484
8585
# For some reason, the Strawberry perl's pkg-config is found
8686
# instead of the conda's one, so let's delete the /c/Strawberry directory
87+
# Furthermore, we also need to remove an older SDK that is used and can result in compilation problems
8788
- name: Debug pkg-config problem
8889
if: contains(matrix.os, 'windows')
8990
shell: bash -l {0}
9091
run: |
9192
rm -rf /c/Strawberry
93+
rm -rf "/c/Program Files (x86)/Windows Kits/10/Include/10.0.17763.0/"
9294
9395
- name: Check what files have changed
9496
id: filecheck
@@ -143,6 +145,9 @@ jobs:
143145
shell: bash -l {0}
144146
if: steps.filecheck.outputs.WIN_YAML_CHANGED == 1 && matrix.os == 'windows-2019' && matrix.platform == 'win-64'
145147
run: |
148+
# Workaround for problem related to long paths
149+
echo "CONDA_BLD_PATH=C:\\bld\\" >> $GITHUB_ENV
150+
mkdir /c/bld
146151
cp vinca_win.yaml vinca.yaml
147152
mkdir -p recipes
148153
$HOME/.pixi/bin/pixi run -e beta -v vinca --platform win-64 -m -n

0 commit comments

Comments
 (0)