diff options
author | Etienne Samson <samson.etienne@gmail.com> | 2018-04-20 23:11:23 +0200 |
---|---|---|
committer | Etienne Samson <samson.etienne@gmail.com> | 2018-06-06 13:15:50 +0200 |
commit | 1f4ada2a428c8d4af3cc0f12086700cda6e19e3a (patch) | |
tree | 6482ed9d06e05333d0064372bd4964406d310f14 /script | |
parent | 234443e38be92ce14cff8574050f4714485a0102 (diff) | |
download | libgit2-1f4ada2a428c8d4af3cc0f12086700cda6e19e3a.tar.gz |
travis: let cmake perform the build & install step
The goal is to let cmake manage the parallelism
Diffstat (limited to 'script')
-rwxr-xr-x | script/cibuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/cibuild.sh b/script/cibuild.sh index 42705b154..43ca976cc 100755 --- a/script/cibuild.sh +++ b/script/cibuild.sh @@ -25,4 +25,4 @@ mkdir _build cd _build # shellcheck disable=SC2086 cmake .. -DBUILD_EXAMPLES=ON -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS || exit $? -make -j2 install || exit $? +cmake --build . --target install || exit $? |