Add initial AppVeyor configuration
[openssl.git] / .travis.yml
1 language: c
2
3 addons:
4     apt_packages:
5         - binutils-mingw-w64
6         - gcc-mingw-w64
7
8 os:
9     - linux
10     - osx
11
12 compiler:
13     - clang
14     - gcc
15     - i686-w64-mingw32-gcc
16     - x86_64-w64-mingw32-gcc
17
18 env:
19     - CONFIG_OPTS=""
20     - CONFIG_OPTS="shared"
21     - CONFIG_OPTS="-d --strict-warnings"
22
23 matrix:
24     exclude:
25         - os: osx
26           compiler: i686-w64-mingw32-gcc
27         - os: osx
28           compiler: x86_64-w64-mingw32-gcc
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"
33
34 before_script:
35     - if [ "$CC" == i686-w64-mingw32-gcc ]; then
36           export CROSS_COMPILE=${CC%%gcc}; unset CC;
37           ./Configure mingw $CONFIG_OPTS;
38       elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
39           export CROSS_COMPILE=${CC%%gcc}; unset CC;
40           ./Configure mingw64 $CONFIG_OPTS;
41       else
42           ./config $CONFIG_OPTS;
43       fi
44
45 script:
46     - make
47     - if [ -z "$CROSS_COMPILE" ]; then make test; fi
48
49 notifications:
50     recipient:
51         - openssl-commits@openssl.org
52     email:
53         on_success: change
54         on_failure: always