43 lines
869 B
YAML
Executable File
43 lines
869 B
YAML
Executable File
language: php
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
os:
|
|
- linux
|
|
# - osx
|
|
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
|
|
notifications:
|
|
email: team@swoole.com
|
|
|
|
env:
|
|
global:
|
|
- secure: "Mqg9ifSV0BLv2TIBw/x64aEuB8Y5aPXwXg7xAOq08oPlHBYSBgSYxroJL5PXs0fe7PszZF20bUBinwmEXYQzqgP/40Y1kmq/kfTsDXwTOc9qbAbA1pWvH+Sk1kDP5MLJRPWBCkqctyFd0I0u0SdzT1fgSqirqEz2bMnbAUVpSvo="
|
|
|
|
before_install:
|
|
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "swoole/swoole-src"
|
|
description: "Build submitted via Travis CI"
|
|
notification_email: mikan.tenny@gmail.com
|
|
build_command_prepend: "./configure; make clean"
|
|
build_command: "make -j 4"
|
|
branch_pattern: coverity_scan
|
|
|
|
#Compile
|
|
before_script:
|
|
- ./travis/compile.sh
|
|
|
|
script:
|
|
- exit 0
|
|
|
|
|