RetroArch/.travis.yml

115 lines
3.6 KiB
YAML
Raw Normal View History

# Use 'generic' to be able to override CC/CXX for clang
language: generic
matrix:
include:
2017-10-24 00:37:31 -04:00
- compiler: mingw-x86
2019-04-20 19:55:26 -04:00
addons: true
2019-01-11 04:48:50 -05:00
env: CROSS_COMPILE=i686-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
2019-04-20 16:11:28 -04:00
- compiler: mingw-x86
2019-04-20 19:55:26 -04:00
addons: true
2019-04-20 16:11:28 -04:00
env: C89_BUILD=1 CROSS_COMPILE=i686-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
- compiler: mingw-x86
2019-04-20 19:55:26 -04:00
addons: true
2019-04-20 16:11:28 -04:00
env: CXX_BUILD=1 CROSS_COMPILE=i686-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
2017-10-24 00:37:31 -04:00
- compiler: mingw-x64
2019-04-20 19:55:26 -04:00
addons: true
2019-01-11 04:48:50 -05:00
env: CROSS_COMPILE=x86_64-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
2019-04-20 16:11:28 -04:00
- compiler: mingw-x64
2019-04-20 19:55:26 -04:00
addons: true
2019-04-20 16:11:28 -04:00
env: C89_BUILD=1 CROSS_COMPILE=x86_64-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
- compiler: mingw-x64
2019-04-20 19:55:26 -04:00
addons: true
2019-04-20 16:11:28 -04:00
env: CXX_BUILD=1 CROSS_COMPILE=x86_64-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501"
- compiler: gcc
env: CC=gcc-8 CXX=g++-8
2019-04-20 16:11:28 -04:00
- compiler: gcc
env: C89_BUILD=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: CXX_BUILD=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_MENU=1 CC=gcc-8 CXX=g++-8
- compiler: clang
env: CC=clang-6.0 CXX=clang++-6.0
2019-04-20 16:11:28 -04:00
- compiler: clang
env: C89_BUILD=1 CC=clang-6.0 CXX=clang++-6.0
- compiler: clang
env: CXX_BUILD=1 CC=clang-6.0 CXX=clang++-6.0
- os: osx
2018-11-19 10:04:43 -05:00
osx_image: xcode8
script:
- xcodebuild -target RetroArch -configuration Release -project pkg/apple/RetroArch.xcodeproj
2018-08-31 13:49:44 -04:00
- os: osx
osx_image: xcode10.1
2018-08-31 13:49:44 -04:00
script:
2018-09-08 12:04:05 -04:00
- brew install --force-bottle qt5
- xcodebuild -target RetroArchQt -configuration Release -project pkg/apple/RetroArch_Metal.xcodeproj
2018-09-02 21:57:06 -04:00
deploy:
skip_cleanup: true
provider: script
script: bash travis_metal_deploy.sh
2018-09-02 21:57:06 -04:00
on:
branch: master
2019-04-20 15:33:04 -04:00
before_install:
- |
if [ "$CC" = gcc-8 ]; then
# Install a more recent gcc than the default
sudo apt-get install -y g++-8
elif [ "$CC" = clang-6.0 ]; then
# Install a more recent clang than the default
sudo apt-get install -y libstdc++-7-dev
sudo apt-get install -y clang-6.0
2019-04-20 19:55:26 -04:00
elif [ "$CROSS_COMPILE" = i686-w64-mingw32- ]; then
sudo apt-get install -y g++-mingw-w64-i686
sudo apt-get install -y mingw-w64-i686-dev
elif [ "$CROSS_COMPILE" = x86_64-w64-mingw32- ]; then
sudo apt-get install -y g++-mingw-w64-x86-64
sudo apt-get install -y mingw-w64-x86-64-dev
2019-04-20 15:33:04 -04:00
fi
script:
2019-04-20 15:33:04 -04:00
- |
if [ -n "$CROSS_COMPILE" ]; then
ARGS="$ARGS --disable-d3d8 --disable-d3d9 --disable-d3d10 --disable-d3d11 --disable-d3d12 --enable-builtinzlib"
2019-04-20 15:33:04 -04:00
fi
- |
if [ -n "$DISABLE_MENU" ]; then
ARGS="$ARGS --disable-menu"
fi
- ./configure $ARGS
2019-04-20 16:11:28 -04:00
- |
if [ -n "$C89_BUILD" ]; then
make C89_BUILD=1
elif [ -n "$CXX_BUILD" ]; then
make CXX_BUILD=1
else
make
fi
2016-09-17 11:26:13 -04:00
env:
global:
- ARGS=""
2017-10-19 13:18:25 -04:00
- MAKEFLAGS="-j2"
2016-09-17 12:59:24 -04:00
- secure: "qc91ReC3OlzSh2gFaSH6TYzC2qIQvgA2AZff6J13eaH8xijAhuMzttZ0rMQJ0DWCIhPeUb0kIzVyaGoe4MwPALzpw1C1AznIWiZJ53HN+hWCOcS/af7YVPk6HPySnwqrS+Wv3AIIvIKFV2mxv21F/JbT/N+pArlRrp904Xj+KPo="
addons:
apt:
packages:
- libsdl2-dev
- libusb-1.0-0-dev
- qtbase5-dev
- qtdeclarative5-dev
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
2016-09-17 11:26:13 -04:00
coverity_scan:
project:
name: "RetroArch"
description: "RetroArch is the official reference frontend for the libretro API."
notification_email: libretro@gmail.com
build_command_prepend: "./configure; make clean"
build_command: "make"
branch_pattern: coverity_scan
notifications:
email: false