shithub: pokered

ref: 21ff7695173821ac333039df4ab1c68c227aea0a
dir: /.travis.yml/

View raw version
language: c
os:
  - linux
  - osx
install:
  - |-
    ( cd
        if [ $TRAVIS_OS_NAME = linux ]; then
          git clone -b v0.5.0 --depth=1 https://github.com/gbdev/rgbds;
          sudo make -C rgbds install;
          rm -rf rgbds;
        else
          brew install rgbds;
        fi
    )
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 DEBUG=1 -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