File tree 5 files changed +14
-14
lines changed
5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ jobs:
34
34
if : runner.os == 'Linux'
35
35
run : |
36
36
sudo apt install tinyproxy
37
- LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
37
+ LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
38
38
39
39
- name : macOS
40
40
if : runner.os == 'macOS'
41
41
run : |
42
42
export OPENSSL_PREFIX=`brew --prefix [email protected] `
43
43
export LIBSSH2_PREFIX=`brew --prefix libssh2`
44
- export LIBGIT2_VERSION=1.5.0
44
+ export LIBGIT2_VERSION=1.5.1
45
45
/bin/sh build.sh test
46
46
47
47
aarch64 :
59
59
apt-get update -q -y
60
60
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
61
61
run : |
62
- LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
62
+ LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
63
63
64
64
s390x :
65
65
runs-on : ubuntu-20.04
77
77
apt-get update -q -y
78
78
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
79
79
run : |
80
- LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
80
+ LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
81
81
continue-on-error : true # Tests are expected to fail, see issue #812
Original file line number Diff line number Diff line change 32
32
run : python -m cibuildwheel --output-dir wheelhouse
33
33
env :
34
34
CIBW_BEFORE_ALL : sh build.sh
35
- CIBW_ENVIRONMENT : LIBGIT2_VERSION=1.5.0 LIBSSH2_VERSION=1.10.0 OPENSSL_VERSION=3.0.7 LIBGIT2=/project/ci
36
- CIBW_ENVIRONMENT_MACOS : LIBGIT2_VERSION=1.5.0 LIBSSH2_VERSION=1.10.0 DYLD_LIBRARY_PATH=/usr/local/lib OPENSSL_VERSION=3.0.2
35
+ CIBW_ENVIRONMENT : LIBGIT2_VERSION=1.5.1 LIBSSH2_VERSION=1.10.0 OPENSSL_VERSION=3.0.7 LIBGIT2=/project/ci
36
+ CIBW_ENVIRONMENT_MACOS : LIBGIT2_VERSION=1.5.1 LIBSSH2_VERSION=1.10.0 DYLD_LIBRARY_PATH=/usr/local/lib OPENSSL_VERSION=3.0.2
37
37
CIBW_SKIP : " *-musllinux*"
38
38
CIBW_MANYLINUX_AARCH64_IMAGE : " manylinux_2_24"
39
39
CIBW_MANYLINUX_X86_64_IMAGE : " manylinux_2_24"
Original file line number Diff line number Diff line change 1
1
.PHONY : build html
2
2
3
3
build :
4
- OPENSSL_VERSION=3.0.7 LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 sh build.sh
4
+ OPENSSL_VERSION=3.0.7 LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 sh build.sh
5
5
6
6
html : build
7
7
make -C docs html
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ build_script:
35
35
# Clone, build and install libgit2
36
36
- cmd : |
37
37
set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\venv
38
- git clone --depth=1 -b v1.5.0 https://github.com/libgit2/libgit2.git libgit2
38
+ git clone --depth=1 -b v1.5.1 https://github.com/libgit2/libgit2.git libgit2
39
39
cd libgit2
40
40
cmake . -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
41
41
cmake --build . --target install
Original file line number Diff line number Diff line change 25
25
#
26
26
# sh build.sh
27
27
#
28
- # Build libgit2 1.5.0 (will use libssh2 if available), then build pygit2
28
+ # Build libgit2 1.5.1 (will use libssh2 if available), then build pygit2
29
29
# inplace:
30
30
#
31
- # LIBGIT2_VERSION=1.5.0 sh build.sh
31
+ # LIBGIT2_VERSION=1.5.1 sh build.sh
32
32
#
33
- # Build libssh2 1.10.0 and libgit2 1.5.0 , then build pygit2 inplace:
33
+ # Build libssh2 1.10.0 and libgit2 1.5.1 , then build pygit2 inplace:
34
34
#
35
- # LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 sh build.sh
35
+ # LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 sh build.sh
36
36
#
37
- # Tell where libssh2 is installed, build libgit2 1.5.0 , then build pygit2
37
+ # Tell where libssh2 is installed, build libgit2 1.5.1 , then build pygit2
38
38
# inplace:
39
39
#
40
- # LIBSSH2_PREFIX=/usr/local LIBGIT2_VERSION=1.5.0 sh build.sh
40
+ # LIBSSH2_PREFIX=/usr/local LIBGIT2_VERSION=1.5.1 sh build.sh
41
41
#
42
42
# Build inplace and run the tests:
43
43
#
You can’t perform that action at this time.
0 commit comments