mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-11 18:17:54 +00:00
commit
34a064d962
38
.travis.yml
Normal file
38
.travis.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Travis-CI Build for libgit2
|
||||||
|
# see travis-ci.org for details
|
||||||
|
|
||||||
|
# As CMake is not officially supported we use erlang VMs
|
||||||
|
language: erlang
|
||||||
|
|
||||||
|
# Settings to try
|
||||||
|
env:
|
||||||
|
- OPTIONS="-DTHREADSAFE=ON -DCMAKE_BUILD_TYPE=Release"
|
||||||
|
- OPTIONS="-DBUILD_CLAR=ON"
|
||||||
|
|
||||||
|
# Make sure CMake is installed
|
||||||
|
install:
|
||||||
|
- sudo apt-get install cmake
|
||||||
|
|
||||||
|
# Run the Build script
|
||||||
|
script:
|
||||||
|
- mkdir _build
|
||||||
|
- cd _build
|
||||||
|
- cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS
|
||||||
|
- cmake --build . --target install
|
||||||
|
|
||||||
|
# Run Tests
|
||||||
|
after_script:
|
||||||
|
- ctest .
|
||||||
|
|
||||||
|
# Only watch the development branch
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- development
|
||||||
|
|
||||||
|
# Notify development list when needed
|
||||||
|
notifications:
|
||||||
|
recipients:
|
||||||
|
- drahosp@gmail.com # CHANGE!
|
||||||
|
email:
|
||||||
|
on_success: change
|
||||||
|
on_failure: always
|
1
AUTHORS
1
AUTHORS
@ -36,7 +36,6 @@ Marc Pegon
|
|||||||
Marcel Groothuis
|
Marcel Groothuis
|
||||||
Marco Villegas
|
Marco Villegas
|
||||||
Olivier Ramonat
|
Olivier Ramonat
|
||||||
Peter Drahos
|
|
||||||
Peter Drahoš
|
Peter Drahoš
|
||||||
Pierre Habouzit
|
Pierre Habouzit
|
||||||
Przemyslaw Pawelczyk
|
Przemyslaw Pawelczyk
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
libgit2 - the Git linkable library
|
libgit2 - the Git linkable library
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
[](http://travis-ci.org/libgit2/libgit2)
|
||||||
|
|
||||||
libgit2 is a portable, pure C implementation of the Git core methods provided as a
|
libgit2 is a portable, pure C implementation of the Git core methods provided as a
|
||||||
re-entrant linkable library with a solid API, allowing you to write native
|
re-entrant linkable library with a solid API, allowing you to write native
|
||||||
speed custom Git applications in any language with bindings.
|
speed custom Git applications in any language with bindings.
|
||||||
|
Loading…
Reference in New Issue
Block a user