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

Commit 0e79b2e

Browse files
committed
Further reduce steps, concatenating them in logical steps
1 parent d4901ac commit 0e79b2e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.drone.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ pipeline:
1919
- make vet
2020
- make lint
2121
# Test with latest git version
22-
- git --version
23-
- make test
22+
- git --version && make test
2423
# Test with git version 1.7.2
2524
- apk add --update autoconf zlib-dev > /dev/null &&
2625
mkdir build &&
@@ -32,9 +31,9 @@ pipeline:
3231
{ make install NO_PERL=please > /dev/null 2> err || cat err; } &&
3332
cd ../.. &&
3433
rm -rf build git.tar.gz &&
35-
- hash -r
36-
- git --version
37-
- make test
34+
hash -r &&
35+
git --version &&
36+
make test
3837
# Test a build (is this really needed?)
3938
- make build
4039

0 commit comments

Comments
 (0)