diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2014-01-31 22:59:12 +0100 |
---|---|---|
committer | Johann Klähn <kljohann@gmail.com> | 2014-02-01 19:34:45 +0100 |
commit | 4b0563044f6c62c670a29f36910a470521db5458 (patch) | |
tree | 53dad24db731695953e07b4ed7acdcd67425f203 | |
parent | 31705094c178c48bf29bc0b96942bb40897a8e62 (diff) | |
download | fork-ledger-4b0563044f6c62c670a29f36910a470521db5458.tar.gz fork-ledger-4b0563044f6c62c670a29f36910a470521db5458.tar.bz2 fork-ledger-4b0563044f6c62c670a29f36910a470521db5458.zip |
Add continuous integration using Travis CI
-rw-r--r-- | .travis.yml | 9 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c2996e66 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: cpp +compiler: + - clang + - gcc +install: "./acprep dependencies" +before_script: "./acprep opt make --python" +script: + - "./acprep check -- --output-on-failure" + - "PYTHONPATH=. python python/demo.py" @@ -1,3 +1,5 @@ +[![Build Status](https://travis-ci.org/ledger/ledger.png?branch=master)](https://travis-ci.org/ledger/ledger) + # Ledger: Command-Line Accounting Ledger is a powerful, double-entry accounting system that is accessed from the |