File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 41
41
" architecture " : " ${{ matrix.arch }}"
42
42
},
43
43
},
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
- },
52
44
{
53
45
" name " : " Build and test gssapi" ,
54
46
" shell " : " bash" ,
Original file line number Diff line number Diff line change @@ -67,14 +67,16 @@ setup::windows::install() {
67
67
# Install the 32bit version if Python is 32bit
68
68
if python -c " assert __import__('sys').maxsize <= 2**32" ; then
69
69
CHINST=" $CHINST --x86"
70
+ PF=" Program Files (x86)"
71
+ else
72
+ PF=" Program Files"
70
73
fi
71
74
72
-
73
75
# Install MIT Kerberos. choco will fail despite the installation working.
74
76
$CHINST mitkerberos --install-arguments " 'ADDLOCAL=ALL'" || true
75
77
76
78
# Update path to include it
77
- export PATH=" /c/Program Files /MIT/Kerberos/bin:$PATH "
79
+ export PATH=" /c/$PF /MIT/Kerberos/bin:$PATH "
78
80
79
81
python -m pip install --upgrade pip psutil
80
82
}
You can’t perform that action at this time.
0 commit comments