2016-09-06 00:42:17 +00:00
|
|
|
# Use 'generic' to be able to override CC/CXX for clang
|
|
|
|
language: generic
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2017-10-24 04:37:31 +00:00
|
|
|
- compiler: mingw-x86
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- g++-mingw-w64-i686
|
2017-10-24 04:39:00 +00:00
|
|
|
- mingw-w64-i686-dev
|
2017-10-24 04:37:31 +00:00
|
|
|
script:
|
2018-04-27 17:48:58 +00:00
|
|
|
- CROSS_COMPILE=i686-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501" ./configure --disable-d3d8 --disable-d3d9 --disable-d3d10 --disable-d3d11 --disable-d3d12 && make HAVE_ZLIB=1 HAVE_BUILTINZLIB=1 HAVE_RPNG=1
|
2017-10-24 04:37:31 +00:00
|
|
|
- compiler: mingw-x64
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- g++-mingw-w64-x86-64
|
|
|
|
- mingw-w64-x86-64-dev
|
|
|
|
script:
|
2018-04-27 17:48:58 +00:00
|
|
|
- CROSS_COMPILE=x86_64-w64-mingw32- CFLAGS="-D_WIN32_WINNT=0x0501" ./configure --disable-d3d8 --disable-d3d9 --disable-d3d10 --disable-d3d11 --disable-d3d12 && make HAVE_ZLIB=1 HAVE_BUILTINZLIB=1 HAVE_RPNG=1
|
2016-09-06 00:42:17 +00:00
|
|
|
- compiler: gcc
|
|
|
|
- compiler: clang
|
|
|
|
addons:
|
|
|
|
# Install a more recent clang than the default
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.8
|
|
|
|
packages:
|
|
|
|
- clang-3.8
|
|
|
|
env: COMPILER_NAME=clang-3.8 CXX=clang++-3.8 CC=clang-3.8
|
|
|
|
- os: osx
|
|
|
|
osx_image: xcode7.3
|
|
|
|
script:
|
|
|
|
- xcodebuild -target RetroArch -configuration Release -project pkg/apple/RetroArch.xcodeproj
|
|
|
|
|
|
|
|
script:
|
|
|
|
- ./configure
|
|
|
|
- make
|
|
|
|
|
2016-09-17 15:26:13 +00:00
|
|
|
env:
|
|
|
|
global:
|
2017-10-19 17:18:25 +00:00
|
|
|
- MAKEFLAGS="-j2"
|
2016-09-17 16:59:24 +00:00
|
|
|
- secure: "qc91ReC3OlzSh2gFaSH6TYzC2qIQvgA2AZff6J13eaH8xijAhuMzttZ0rMQJ0DWCIhPeUb0kIzVyaGoe4MwPALzpw1C1AznIWiZJ53HN+hWCOcS/af7YVPk6HPySnwqrS+Wv3AIIvIKFV2mxv21F/JbT/N+pArlRrp904Xj+KPo="
|
2016-09-06 00:42:17 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- curl
|
|
|
|
- pkg-config
|
|
|
|
- libglu1-mesa-dev
|
2016-12-16 13:39:11 +00:00
|
|
|
- freeglut3-dev
|
2016-09-06 00:42:17 +00:00
|
|
|
- mesa-common-dev
|
|
|
|
- libsdl1.2-dev
|
|
|
|
- libsdl-image1.2-dev
|
|
|
|
- libsdl-mixer1.2-dev
|
|
|
|
- libsdl-ttf2.0-dev
|
2017-11-29 04:16:38 +00:00
|
|
|
- libusb-1.0-0-dev
|
2016-09-17 15:26:13 +00: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
|
2018-04-23 21:08:43 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|