Ensure the dtls1_get_*_methods work with DTLS_ANY_VERSION
[openssl.git] / .travis.yml
index cb28758e89fd1e716454f8f01ef0775c7cebda73..b88eb3a188ae6430d87ea9bf474dd4d096bf564c 100644 (file)
@@ -18,7 +18,7 @@ compiler:
 env:
     - CONFIG_OPTS=""
     - CONFIG_OPTS="shared"
-    - CONFIG_OPTS="--debug --strict-warnings"
+    - CONFIG_OPTS="-d --strict-warnings"
 
 matrix:
     exclude:
@@ -26,6 +26,10 @@ matrix:
           compiler: i686-w64-mingw32-gcc
         - os: osx
           compiler: x86_64-w64-mingw32-gcc
+        - compiler: i686-w64-mingw32-gcc
+          env: CONFIG_OPTS="-d --strict-warnings"
+        - compiler: x86_64-w64-mingw32-gcc
+          env: CONFIG_OPTS="-d --strict-warnings"
 
 before_script:
     - if [ "$CC" == i686-w64-mingw32-gcc ]; then
@@ -35,6 +39,9 @@ before_script:
           export CROSS_COMPILE=${CC%%gcc}; unset CC;
           ./Configure mingw64 $CONFIG_OPTS;
       else
+          if [ "$CC" == gcc ]; then
+              export CONFIG_OPTS="$CONFIG_OPTS -Wno-error=shadow";
+          fi;
           ./config $CONFIG_OPTS;
       fi
 
@@ -43,8 +50,5 @@ script:
     - if [ -z "$CROSS_COMPILE" ]; then make test; fi
 
 notifications:
-    recipient:
-        - openssl-commits@openssl.org
     email:
-        on_success: change
-        on_failure: always
+        - openssl-commits@openssl.org