mirror of
https://github.com/mupen64plus/mupen64plus-input-sdl.git
synced 2025-04-02 10:52:40 -04:00
Github provides a Travis CI integration which makes it easy to have a quick check of a patch before a pull request is accepted. It is not enough to prove the correctness of a contribution but at least helps to avoid some of the worst build problems. This feature *must* be enabled by the mupen64plus administrator *before this commit is merged*: - https://travis-ci.org/profile/mupen64plus - Login via your Github account - Make sure you are on "https://travis-ci.org/profile/mupen64plus" - Switch repository to "On"
15 lines
926 B
YAML
15 lines
926 B
YAML
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
- sudo add-apt-repository --yes ppa:zoogie/sdl2-snapshots
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y git libsdl1.2-dev libsdl2-dev
|
|
- git clone --depth=1 --branch=master git://github.com/mupen64plus/mupen64plus-core.git deps/mupen64plus-core
|
|
env:
|
|
- PLUGINDBG=0
|
|
- PLUGINDBG=1
|
|
script:
|
|
- make -C projects/unix APIDIR="$(pwd)/deps/mupen64plus-core/src/api/" V=1 clean && LDFLAGS="-Wl,--no-add-needed -Wl,--no-undefined" OPTFLAGS="-O2" make SDL_CONFIG=sdl-config CC="${CC}" CXX="${CXX}" -j$(nproc) -C projects/unix APIDIR="$(pwd)/deps/mupen64plus-core/src/api/" V=1 all
|
|
- make -C projects/unix APIDIR="$(pwd)/deps/mupen64plus-core/src/api/" V=1 clean && LDFLAGS="-Wl,--no-add-needed -Wl,--no-undefined" OPTFLAGS="-O2" make SDL_CONFIG=sdl2-config CC="${CC}" CXX="${CXX}" -j$(nproc) -C projects/unix APIDIR="$(pwd)/deps/mupen64plus-core/src/api/" V=1 all
|