Skip to content
This repository was archived by the owner on Apr 12, 2019. It is now read-only.

Commit b4b4006

Browse files
committed
Add testing with git-1.7.0
1 parent a6e24ca commit b4b4006

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.drone.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,24 @@ pipeline:
1818
- make clean
1919
- make vet
2020
- make lint
21+
- git --version
22+
- make test
23+
- apk add --update autoconf &&
24+
apk add --update zlib-dev &&
25+
mkdir build &&
26+
curl -sL "https://github.com/git/git/archive/v1.7.0.tar.gz" -o git.tar.gz &&
27+
tar -C build -xzf git.tar.gz &&
28+
cd build/git-1.7.0 &&
29+
autoconf &&
30+
./configure --without-tcltk --prefix=/usr/local &&
31+
make install NO_PERL=please &&
32+
cd ../.. &&
33+
rm -rf build &&
34+
rm git.tar.gz
35+
- git --version
36+
- hash -r
37+
- git --version
38+
- /usr/local/bin/git --version
2139
- make test
2240
- make build
2341

0 commit comments

Comments
 (0)