ref: a325db0f14ca3c48bd9057627f7306b207544700
dir: /.travis.yml/
language: c os: - linux - osx install: - |- ( cd git clone --depth=1 https://github.com/rednex/rgbds sudo make -C rgbds CFLAGS=-O2 install rm -rf rgbds ) before_script: - |- function check_status() { if ! git diff-index --quiet --ignore-submodules=all HEAD --; then echo 'Uncommitted changes detected:'; git diff-index HEAD --; return 1; fi; } script: - make -j2 compare - check_status after_success: - |- if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_OS_NAME" = linux ]; then ./.travis/webhook.sh fi