We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 124e6bb commit 982e47aCopy full SHA for 982e47a
.travis.sh
@@ -1,8 +1,19 @@
1
#!/bin/sh
2
+# Based on pygit2's .travis.sh
3
4
+PREFIX=/home/travis/install
5
+
6
+# Build libssh2 1.9.0 (Ubuntu only has 1.8.0, which doesn't work)
7
cd ~
8
+wget https://www.libssh2.org/download/libssh2-1.9.0.tar.gz
9
+tar xf libssh2-1.9.0.tar.gz
10
+cd libssh2-1.9.0
11
+./configure --prefix=/usr --disable-static && make
12
+sudo make install
13
-git clone --depth=1 -b ethomson/v1.1 https://github.com/libgit2/libgit2.git
14
+# Build libgit2
15
+cd ~
16
+git clone --depth=1 -b "maint/v1.1" https://github.com/libgit2/libgit2.git
17
cd libgit2/
18
19
mkdir build && cd build
0 commit comments