mirror of
https://github.com/mupen64plus/mupen64plus-rsp-hle.git
synced 2025-04-02 10:31:57 -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"
13 lines
524 B
YAML
13 lines
524 B
YAML
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y git
|
|
- git clone --depth=1 --branch=master git://github.com/mupen64plus/mupen64plus-core.git deps/mupen64plus-core
|
|
env:
|
|
- DUMP=0
|
|
- DUMP=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 CC="${CC}" CXX="${CXX}" -j$(nproc) -C projects/unix APIDIR="$(pwd)/deps/mupen64plus-core/src/api/" V=1 all
|