mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 09:40:41 +03:00
7f499d0e5f
* makefiles: add /usr/local/opt/openssl/include and /usr/local/opt/openssl/lib as include paths on MacOS * Travis CI: add MacOS target and create scripts files
38 lines
604 B
YAML
38 lines
604 B
YAML
sudo: required
|
|
|
|
language: c
|
|
|
|
env:
|
|
global:
|
|
- OPENSSL_INSTALL_DIR="${HOME}/opt"
|
|
|
|
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
|
|
- os: osx
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
cache:
|
|
directories:
|
|
- download-cache
|
|
- ${HOME}/opt
|
|
|
|
before_install:
|
|
- bash .ci/before_install.sh
|
|
|
|
script:
|
|
- bash .ci/script.sh
|