Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cinemast/git-abireport
An ABI/API compliance checker for git repositories
https://github.com/cinemast/git-abireport
Last synced: about 1 month ago
JSON representation
An ABI/API compliance checker for git repositories
- Host: GitHub
- URL: https://github.com/cinemast/git-abireport
- Owner: cinemast
- License: gpl-3.0
- Created: 2015-07-16T15:07:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-02T13:35:50.000Z (over 9 years ago)
- Last Synced: 2024-05-01T13:39:29.603Z (8 months ago)
- Language: Python
- Size: 172 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-abireport
An ABI/API compliance checker for git repositories.The goal of this project is to make it as easy as possible to check
new upstream versions of shared libraries against ABI/API breaks.The user should only provide a GIT url and optionally a list of tags, which
should be checked (semantic versioning required).The tool than automatically tries to build the software and checks the API/ABI
using the [ABI-compliance-checker](http://ispras.linuxbase.org/index.php/ABI_compliance_checker).The result should be presented in browsable HTML files.
# Specification
Each project needs a specification about where the sources can be found, which tags should be checked and how the binaries are built.The specification is expressed in YAML.
```yaml
---
url: https://github.com/open-source-parsers/jsoncpp.git
branches:
- master
- develop
recipes:
- tag: 0.1.*
libraries:
- libjsoncpp.so.*
script: |
mkdir build
cd build
cmake -DJSONCPP_LIB_BUILD_SHARED=ON -DCMAKE_BUILD_TYPE=Debug ..
make- tag: 1.0.*
libraries:
- libjsoncpp.so.*
script: |
scons platform=gcc
make```
# Implementation
The implementation will probably be in python.# Dependencies
```sh
sudo apt-get install git abi-compliance-checker
```