[openssl-commits] [openssl] OpenSSL_0_9_8-stable update

Rich Salz rsalz at openssl.org
Tue Sep 22 17:48:03 UTC 2015


The branch OpenSSL_0_9_8-stable has been updated
       via  ba6d3a62998d6215e7a6e1ee2a93a5fdd7bf7f29 (commit)
      from  5e7d583bab249dbc4ae484768e05aa11ea14f5bc (commit)


- Log -----------------------------------------------------------------
commit ba6d3a62998d6215e7a6e1ee2a93a5fdd7bf7f29
Author: Rich Salz <rsalz at akamai.com>
Date:   Mon Sep 21 19:54:36 2015 -0400

    GH398: Add mingw cross-compile, etc.
    
    For all release branches.  It adds travis build support. If you don't
    have a config file it uses the default (because we enabled travis for the
    project), which uses ruby/rake/rakefiles, and you get confusing "build
    still failing" messages.
    
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    (cherry picked from commit db9defdfe306e1adf0af7188b187d535eb0268da)

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 .travis.yml

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..cb28758
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,50 @@
+language: c
+
+addons:
+    apt_packages:
+        - binutils-mingw-w64
+        - gcc-mingw-w64
+
+os:
+    - linux
+    - osx
+
+compiler:
+    - clang
+    - gcc
+    - i686-w64-mingw32-gcc
+    - x86_64-w64-mingw32-gcc
+
+env:
+    - CONFIG_OPTS=""
+    - CONFIG_OPTS="shared"
+    - CONFIG_OPTS="--debug --strict-warnings"
+
+matrix:
+    exclude:
+        - os: osx
+          compiler: i686-w64-mingw32-gcc
+        - os: osx
+          compiler: x86_64-w64-mingw32-gcc
+
+before_script:
+    - if [ "$CC" == i686-w64-mingw32-gcc ]; then
+          export CROSS_COMPILE=${CC%%gcc}; unset CC;
+          ./Configure mingw $CONFIG_OPTS;
+      elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
+          export CROSS_COMPILE=${CC%%gcc}; unset CC;
+          ./Configure mingw64 $CONFIG_OPTS;
+      else
+          ./config $CONFIG_OPTS;
+      fi
+
+script:
+    - make
+    - if [ -z "$CROSS_COMPILE" ]; then make test; fi
+
+notifications:
+    recipient:
+        - openssl-commits at openssl.org
+    email:
+        on_success: change
+        on_failure: always


More information about the openssl-commits mailing list