[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Thu Sep 3 13:41:54 UTC 2015
The branch master has been updated
via 66c103bdaba21749555c8073a3f20b7741fa5869 (commit)
from e56a79784c49b2b197d08a31b449152e96d5b395 (commit)
- Log -----------------------------------------------------------------
commit 66c103bdaba21749555c8073a3f20b7741fa5869
Author: Alessandro Ghedini <alessandro at ghedini.me>
Date: Thu Aug 20 00:12:29 2015 +0200
Add initial Travis CI configuration
Closes #63
Signed-off-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Ben Laurie <ben at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 .travis.yml
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2862473
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,24 @@
+language: c
+
+os:
+ - linux
+ - osx
+
+compiler:
+ - clang
+ - gcc
+
+env:
+ - CONFIG_OPTS=""
+ - CONFIG_OPTS="--debug"
+ - CONFIG_OPTS="shared"
+
+script:
+ - ./config $CONFIG_OPTS && make && make test
+
+notifications:
+ recipient:
+ - openssl-dev at openssl.org
+ email:
+ on_success: change
+ on_failure: always
More information about the openssl-commits
mailing list