1
0
mirror of https://github.com/go-gitea/git.git synced 2026-02-05 15:45:40 +01:00

Add testing with git-1.7.0 installed

This commit is contained in:
Sandro Santilli
2017-11-13 21:04:15 +13:00
parent 68da3f4e6c
commit 9fca2020be

View File

@@ -18,6 +18,18 @@ pipeline:
- make vet
- make lint
- make test
- mkdir build \
&& curl -fsSL "https://github.com/git/git/archive/v1.7.0.tar.gz" -o git.tar.gz \
&& tar -C build -xzf git.tar.gz \
&& cd build/git-1.7.0 \
&& chmod +x configure \
&& ./configure \
&& make all \
&& make install PREFIX=/usr/local \
&& cd ../.. \
&& rm -rf build \
&& rm git.tar.gz
- make test
- make build
# coverage: