Skip to content

Commit e9abcf2

Browse files
committed
Test swapping PATH program files
Signed-off-by: Roger Aiudi <[email protected]>
1 parent 0147208 commit e9abcf2

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,6 @@
4141
"architecture": "${{ matrix.arch }}"
4242
},
4343
},
44-
{
45-
"name": "Debug with SSH",
46-
"uses": "luchihoratiu/debug-via-ssh@main",
47-
"with": {
48-
"NGROK_AUTH_TOKEN": "${{ secrets.NGROK_AUTH_TOKEN }}",
49-
"SSH_PASS": "${{ secrets.SSH_PASS }}",
50-
}
51-
},
5244
{
5345
"name": "Build and test gssapi",
5446
"shell": "bash",

ci/lib-setup.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,16 @@ setup::windows::install() {
6767
# Install the 32bit version if Python is 32bit
6868
if python -c "assert __import__('sys').maxsize <= 2**32"; then
6969
CHINST="$CHINST --x86"
70+
PF="Program Files (x86)"
71+
else
72+
PF="Program Files"
7073
fi
7174

72-
7375
# Install MIT Kerberos. choco will fail despite the installation working.
7476
$CHINST mitkerberos --install-arguments "'ADDLOCAL=ALL'" || true
7577

7678
# Update path to include it
77-
export PATH="/c/Program Files/MIT/Kerberos/bin:$PATH"
79+
export PATH="/c/$PF/MIT/Kerberos/bin:$PATH"
7880

7981
python -m pip install --upgrade pip psutil
8082
}

0 commit comments

Comments
 (0)