mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
d481922a50
The Xenial image and the Xcode 10.1 toolchain are mature enough to enable the sanitizer.
248 lines
5.6 KiB
YAML
248 lines
5.6 KiB
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
dist: xenial
|
|
sudo: required
|
|
|
|
osx_image: xcode10.1
|
|
|
|
git:
|
|
depth: 5
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
env:
|
|
global:
|
|
- BUILD_JOBS=2
|
|
- ANDROID_HOME="$HOME/.android"
|
|
- ANDROID_SDK="$HOME/android/sdk/"
|
|
- ANDROID_NDK="$HOME/android/sdk/ndk-bundle"
|
|
- ANDROID_SDK_ROOT="$ANDROID_SDK"
|
|
- ANDROID_NDK_ROOT="$ANDROID_NDK"
|
|
|
|
matrix:
|
|
- BUILD_MODE="all"
|
|
- BUILD_MODE="native"
|
|
- BUILD_MODE="no-asm"
|
|
- BUILD_MODE="debug"
|
|
- BUILD_MODE="asan"
|
|
- BUILD_MODE="ubsan"
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
# Skip GCC on OS X entirely
|
|
- os: osx
|
|
compiler: gcc
|
|
|
|
include:
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=autotools
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=cmake
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=autotools
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=cmake
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=armeabi-v7a
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=armv7a-neon
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=aarch64
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=mipsel
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=mipsel64
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=x86
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=x86_64
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=iPhoneOS
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=Arm64
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=WatchOS
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=AppleTVOS
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=WatchSimulator
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=AppleTVSimulator
|
|
|
|
allow_failures:
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=WatchOS
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=iPhoneSimulator
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=WatchSimulator
|
|
- os: osx
|
|
env:
|
|
- BUILD_OS=osx
|
|
- BUILD_MODE=ios
|
|
- PLATFORM=AppleTVSimulator
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=armeabi
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=mipsel
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=mipsel64
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=aarch64
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=armeabi-v7a
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=armv7a-neon
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=x86
|
|
- os: linux
|
|
env:
|
|
- BUILD_OS=linux
|
|
- BUILD_MODE=android
|
|
- PLATFORM=x86_64
|
|
|
|
before_install:
|
|
- |
|
|
if [[ "$BUILD_OS" == "linux" ]] && [[ "$BUILD_MODE" == "android" ]]; then
|
|
# https://github.com/travis-ci/travis-ci/issues/9037
|
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A145
|
|
sudo apt-get update
|
|
source TestScripts/setenv-travis.sh
|
|
bash TestScripts/install-android.sh
|
|
fi
|
|
if [[ "$BUILD_OS" == "linux" ]] && [[ "$BUILD_MODE" == "autotools" ]]; then
|
|
# https://github.com/travis-ci/travis-ci/issues/9037
|
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A145
|
|
sudo apt-get install -y autoconf automake libtool
|
|
fi
|
|
|
|
script:
|
|
- |
|
|
if [[ "$BUILD_MODE" == "ios" ]]; then
|
|
cp TestScripts/setenv-ios.sh .
|
|
cp TestScripts/cryptest-ios.sh .
|
|
bash cryptest-ios.sh
|
|
elif [[ "$BUILD_MODE" == "android" ]]; then
|
|
cp TestScripts/setenv-android-gcc.sh .
|
|
cp TestScripts/cryptest-android.sh .
|
|
bash cryptest-android.sh
|
|
elif [[ "$BUILD_MODE" == "autotools" ]]; then
|
|
cp TestScripts/cryptest-autotools.sh .
|
|
bash cryptest-autotools.sh
|
|
elif [[ "$BUILD_MODE" == "cmake" ]]; then
|
|
cp TestScripts/cryptest-cmake.sh .
|
|
bash cryptest-cmake.sh
|
|
elif [[ "$BUILD_MODE" == "debug" ]]; then
|
|
CXXFLAGS="-DDEBUG -g2 -O1" make -j "$BUILD_JOBS"
|
|
./cryptest.exe v
|
|
./cryptest.exe tv all
|
|
else
|
|
make "$BUILD_MODE" -j "$BUILD_JOBS"
|
|
./cryptest.exe v
|
|
./cryptest.exe tv all
|
|
fi
|
|
|
|
# whitelist branches to avoid testing feature branches twice
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
addons:
|
|
sonarcloud: false
|
|
|
|
coverity_scan:
|
|
project:
|
|
name: "cryptopp"
|
|
build_command: "make -j 2"
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- cryptopp-build@googlegroups.com
|
|
on_success: always # default: change
|
|
on_failure: always # default: always
|