diff options
author | daniel <[email protected]> | 2015-04-28 12:06:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-04-28 12:06:57 +0000 |
commit | 6e1d6ad41ffb01c4747e3aa7bda387d058c2fa27 (patch) | |
tree | 1af6bdbe12e4333c88f5e9e7c0a916e4b578c1ef | |
parent | 77d259fdcb4d0aaf3a760836bc6dca5642077be5 (diff) |
Add AppVeyor (Windows CI) build integration. GH pull #63
-rw-r--r-- | appveyor.yml | 8 | ||||
-rw-r--r-- | readme.rst | 19 |
2 files changed, 21 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..0061908db --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,8 @@ +os: Windows Server 2012 R2 + +install: + - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 + +build_script: + - python configure.py --cpu=x86_32 + - nmake diff --git a/readme.rst b/readme.rst index d263e0b9d..8b121999d 100644 --- a/readme.rst +++ b/readme.rst @@ -1,15 +1,10 @@ Botan Crypto Library ======================================== + Botan is a C++11 library for crypto and TLS released under the permissive 2-clause BSD license (see ``doc/license.txt`` for the specifics). -.. image:: https://travis-ci.org/randombit/botan.svg?branch=net.randombit.botan - :target: https://travis-ci.org/randombit/botan - -In addition to Travis CI, Kullo GmbH hosts a CI building botan on -Linux, OS X, and Windows at https://botan-ci.kullo.net/ - For all the details on building the library read ``doc/manual/building.rst``, but basically:: @@ -28,3 +23,15 @@ or by sending a report to the `botan-devel mailing list The `github wiki <https://github.com/randombit/botan/wiki>`_ is also available as a resource. + +CI Status +---------------------------------------- + +.. image:: https://travis-ci.org/randombit/botan.svg?branch=net.randombit.botan + :target: https://travis-ci.org/randombit/botan + +.. image:: https://ci.appveyor.com/api/projects/status/5t1osr48aq000yri?svg=true + :target: https://ci.appveyor.com/project/randombit/botan + +Kullo GmbH hosts a CI building botan on Linux, OS X, and Windows at +https://botan-ci.kullo.net/ |