8000 Switch CI to use libgit2 master · libgit2/pygit2@fdf0244 · GitHub
[go: up one dir, main page]

Skip to content

Commit fdf0244

Browse files
committed
Switch CI to use libgit2 master
1 parent dc80719 commit fdf0244

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99

1010
cd ~
1111

12-
git clone --depth=1 -b "maint/v${LIBGIT2_VERSION}" https://github.com/libgit2/libgit2.git
12+
git clone --depth=1 -b "${LIBGIT2_VERSION}" https://github.com/libgit2/libgit2.git
1313
cd libgit2/
1414

1515
mkdir build && cd build

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
global:
1414
LIBGIT2: ~/libgit2/_install/
1515
LD_LIBRARY_PATH: ${LIBGIT2}/lib:${LD_LIBRARY_PATH}
16-
LIBGIT2_VERSION: "0.99"
16+
LIBGIT2_VERSION: "master"
1717

1818

1919
jobs:

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ build_script:
3232
# Clone, build and install libgit2
3333
- cmd: |
3434
set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\venv
35-
git clone --depth=1 -b maint/v0.99 https://github.com/libgit2/libgit2.git libgit2
35+
git clone --depth=1 -b master https://github.com/libgit2/libgit2.git libgit2
3636
cd libgit2
3737
cmake . -DBUILD_CLAR=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
3838
cmake --build . --target install

0 commit comments

Comments
 (0)
0