[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Thu Sep 3 16:40:30 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via cef9dcbb45c936024cda5d741aee586aa530f052 (commit)
from 40d5689458593aeca0d1a7f3591f7ccb48e459ac (commit)
- Log -----------------------------------------------------------------
commit cef9dcbb45c936024cda5d741aee586aa530f052
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>
(cherry picked from commit 66c103bdaba21749555c8073a3f20b7741fa5869)
-----------------------------------------------------------------------
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