2017-12-03 22:47:31 +03:00
|
|
|
sudo: required
|
2018-03-10 00:01:36 +03:00
|
|
|
|
2017-12-03 22:47:31 +03:00
|
|
|
language: c
|
2018-03-08 00:07:01 +03:00
|
|
|
|
2018-04-10 00:16:38 +03:00
|
|
|
env:
|
|
|
|
global:
|
2018-05-03 00:12:01 +03:00
|
|
|
- OPENSSL_INSTALL_DIR="${HOME}/opt"
|
2018-04-10 00:16:38 +03:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- env: OPENSSL_VERSION="1.0.2o"
|
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
|
|
|
- env: OPENSSL_VERSION="1.1.0f"
|
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
|
|
|
- env: OPENSSL_VERSION="1.0.2o"
|
|
|
|
os: linux
|
|
|
|
compiler: clang
|
|
|
|
- env: OPENSSL_VERSION="1.1.0f"
|
|
|
|
os: linux
|
|
|
|
compiler: clang
|
2018-05-03 00:12:01 +03:00
|
|
|
- os: osx
|
|
|
|
compiler: gcc
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2018-04-10 00:16:38 +03:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- download-cache
|
|
|
|
- ${HOME}/opt
|
2018-03-10 00:01:36 +03:00
|
|
|
|
2018-05-03 00:12:01 +03:00
|
|
|
before_install:
|
|
|
|
- bash .ci/before_install.sh
|
|
|
|
|
2018-03-10 00:01:36 +03:00
|
|
|
script:
|
2018-05-03 00:12:01 +03:00
|
|
|
- bash .ci/script.sh
|