Skip to content

Commit

Permalink
CI update libgit2 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Dec 14, 2020
1 parent 518ca4a commit f23827b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
libgit2: ['ethomson/v1.1']
libgit2: ['maint/v1.1']
py:
- ver: '3.6'
release: '3.6.8' # last Python.org binary release
Expand Down
2 changes: 1 addition & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sudo make install

# Build libgit2
cd ~
git clone --depth=1 -b "ethomson/v${LIBGIT2_VERSION}" https://github.com/libgit2/libgit2.git
git clone --depth=1 -b "maint/v${LIBGIT2_VERSION}" https://github.com/libgit2/libgit2.git
cd libgit2/

mkdir build && cd build
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build_script:
# Clone, build and install libgit2
- cmd: |
set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\venv
git clone --depth=1 -b ethomson/v1.1 https://github.com/libgit2/libgit2.git libgit2
git clone --depth=1 -b maint/v1.1 https://github.com/libgit2/libgit2.git libgit2
cd libgit2
cmake . -DBUILD_CLAR=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
cmake --build . --target install
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ variable. The following recipe shows you how to do it from a bash shell:
.. code-block:: sh
$ export LIBGIT2=C:/Dev/libgit2
$ git clone --depth=1 -b ethomson/v1.1 https://github.com/libgit2/libgit2.git
$ git clone --depth=1 -b maint/v1.1 https://github.com/libgit2/libgit2.git
$ cd libgit2
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 14 Win64"
$ cmake --build . --config release --target install
Expand Down
2 changes: 1 addition & 1 deletion travis/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ popd
>&2 echo
git clone \
--depth=1 \
-b "ethomson/v${LIBGIT2_VERSION}" \
-b "maint/v${LIBGIT2_VERSION}" \
https://github.com/libgit2/libgit2.git \
"${LIBGIT2_CLONE_DIR}"

Expand Down

0 comments on commit f23827b

Please sign in to comment.