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:
|
2018-08-05 17:42:05 +03:00
|
|
|
- env: OPENSSL_VERSION="1.0.2o" BUILD_DEB="1"
|
2018-04-10 00:16:38 +03:00
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
|
|
|
- env: OPENSSL_VERSION="1.1.0f"
|
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
2018-08-12 18:18:23 +03:00
|
|
|
- env: OPENSSL_VERSION="1.0.2o" RUN_COVERITY="1"
|
2018-04-10 00:16:38 +03:00
|
|
|
os: linux
|
|
|
|
compiler: clang
|
|
|
|
- env: OPENSSL_VERSION="1.1.0f"
|
|
|
|
os: linux
|
|
|
|
compiler: clang
|
2018-09-26 05:21:49 +03:00
|
|
|
- env: LABEL="check stb files"
|
|
|
|
os: linux
|
2018-09-23 20:54:57 +03:00
|
|
|
language: csharp
|
|
|
|
mono: none
|
|
|
|
dotnet: 2.1.300
|
|
|
|
before_install:
|
|
|
|
- true
|
|
|
|
before_script:
|
|
|
|
- true
|
|
|
|
script:
|
|
|
|
- cd developer_tools/stbchecker
|
|
|
|
- dotnet run ../../src/bin/hamcore
|
2018-09-26 05:21:49 +03:00
|
|
|
- env: LABEL="create release from tag"
|
|
|
|
os: linux
|
|
|
|
deploy:
|
|
|
|
provider: releases
|
|
|
|
api_key: ${GITHUB_OAUTH_TOKEN}
|
|
|
|
file: se.tar.gz
|
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
|
|
|
tags: true
|
|
|
|
repo: SoftEtherVPN/SoftEtherVPN
|
|
|
|
before_install:
|
|
|
|
- true
|
|
|
|
before_script:
|
|
|
|
- if [ -z "$TRAVIS_TAG" ]; then exit 0; fi
|
|
|
|
script:
|
|
|
|
- true
|
2018-05-03 00:12:01 +03:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2018-08-01 14:56:57 +03:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- ${HOME}/Library/Caches/Homebrew
|
2018-05-29 00:19:04 +03:00
|
|
|
before_install:
|
2018-08-01 14:24:13 +03:00
|
|
|
- brew update && brew upgrade
|
2018-05-29 00:19:04 +03:00
|
|
|
script:
|
|
|
|
- ./configure
|
|
|
|
- make -C tmp
|
2018-10-18 03:02:17 +03:00
|
|
|
- otool -L build/vpnserver
|
2018-09-07 23:12:13 +03:00
|
|
|
- sudo make -C tmp install
|
2018-05-29 00:19:04 +03:00
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
2018-08-05 17:42:05 +03:00
|
|
|
packages: [ debhelper, devscripts, fakeroot, cmake3, dh-exec ]
|
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:
|
2018-05-29 00:19:04 +03:00
|
|
|
- bash .ci/build-openssl.sh > build-deps.log 2>&1 || (cat build-deps.log && exit 1)
|
2018-05-03 00:12:01 +03:00
|
|
|
|
2018-08-12 18:18:23 +03:00
|
|
|
before_script:
|
|
|
|
- .ci/coverity.sh
|
|
|
|
|
2018-03-10 00:01:36 +03:00
|
|
|
script:
|
2018-07-31 12:49:55 +03:00
|
|
|
- export OPENSSL_ROOT_DIR=${OPENSSL_INSTALL_DIR}
|
2018-05-29 00:19:04 +03:00
|
|
|
- export LD_LIBRARY_PATH="${HOME}/opt/lib:${LD_LIBRARY_PATH:-}"
|
|
|
|
- export CFLAGS="-I${HOME}/opt/include"
|
|
|
|
- export LDFLAGS="-L${HOME}/opt/lib"
|
|
|
|
- ./configure
|
|
|
|
- make -C tmp
|
2018-10-18 03:02:17 +03:00
|
|
|
- ldd build/vpnserver
|
2018-09-07 23:12:13 +03:00
|
|
|
- sudo LD_LIBRARY_PATH="${HOME}/opt/lib:${LD_LIBRARY_PATH:-}" make -C tmp install
|
2018-08-10 00:59:43 +03:00
|
|
|
- if [ "${BUILD_DEB}" = "1" ]; then make package -C tmp; fi
|