Skip to content

Commit d1168cc

Browse files
committed
Fixing appveyor (wip)
1 parent 00b04be commit d1168cc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build_script:
3737
set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\venv
3838
git clone --depth=1 -b v1.8.0 https://github.com/libgit2/libgit2.git libgit2
3939
cd libgit2
40-
cmake . -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
40+
cmake . -DUSE_HTTPS=ON -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
4141
cmake --build . --target install
4242
cd ..
4343

pygit2/callbacks.py

+2
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,9 @@ def _certificate_cb(cert_i, valid, host, data):
467467

468468
# python's parsing is deep in the libraries and assumes an OpenSSL-owned cert
469469
val = data.certificate_check(None, bool(valid), ffi.string(host))
470+
print('XXX CERTIFICATE CHECK', val)
470471
if not val:
472+
print('XXX C.GIT_ECERTIFICATE')
471473
return C.GIT_ECERTIFICATE
472474
except Passthrough:
473475
if is_ssh:

0 commit comments

Comments
 (0)