]> git.ipfire.org Git - thirdparty/openssl.git/blame - .travis.yml
Check that the subject name in a proxy cert complies to RFC 3820
[thirdparty/openssl.git] / .travis.yml
CommitLineData
9d1fcbeb
RS
1language: c
2
3addons:
4 apt_packages:
5 - binutils-mingw-w64
6 - gcc-mingw-w64
7
8os:
9 - linux
10 - osx
11
12compiler:
13 - clang
14 - gcc
15 - i686-w64-mingw32-gcc
16 - x86_64-w64-mingw32-gcc
17
18env:
19 - CONFIG_OPTS=""
20 - CONFIG_OPTS="shared"
dfa08ea7 21 - CONFIG_OPTS="-d --strict-warnings"
9d1fcbeb
RS
22
23matrix:
24 exclude:
25 - os: osx
26 compiler: i686-w64-mingw32-gcc
27 - os: osx
28 compiler: x86_64-w64-mingw32-gcc
978b5d70
RS
29 - compiler: i686-w64-mingw32-gcc
30 env: CONFIG_OPTS="-d --strict-warnings"
31 - compiler: x86_64-w64-mingw32-gcc
32 env: CONFIG_OPTS="-d --strict-warnings"
9d1fcbeb
RS
33
34before_script:
cf269a1a 35 - sh .travis-create-release.sh $TRAVIS_OS_NAME
1e8a8729
RL
36 - tar -xvzf _srcdist.tar.gz
37 - cd _srcdist
9d1fcbeb
RS
38 - if [ "$CC" == i686-w64-mingw32-gcc ]; then
39 export CROSS_COMPILE=${CC%%gcc}; unset CC;
40 ./Configure mingw $CONFIG_OPTS;
41 elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
42 export CROSS_COMPILE=${CC%%gcc}; unset CC;
43 ./Configure mingw64 $CONFIG_OPTS;
44 else
45 ./config $CONFIG_OPTS;
46 fi
1e8a8729 47 - cd ..
9d1fcbeb
RS
48
49script:
1e8a8729 50 - cd _srcdist
9d1fcbeb
RS
51 - make
52 - if [ -z "$CROSS_COMPILE" ]; then make test; fi
1e8a8729 53 - cd ..
9d1fcbeb
RS
54
55notifications:
56 recipient:
57 - openssl-commits@openssl.org
58 email:
59 on_success: change
60 on_failure: always