pokered/.travis.yml

29 lines
642 B
YAML
Raw Normal View History

2015-04-09 11:41:12 +00:00
language: c
os:
- linux
- osx
2015-04-09 11:41:12 +00:00
install:
- |-
( cd
2020-12-09 17:41:39 +00:00
git clone -b v0.4.2 --depth=1 https://github.com/gbdev/rgbds
sudo make -C rgbds install
rm -rf rgbds
)
2015-04-09 11:41:12 +00:00
before_script:
- |-
function check_status() {
if ! git diff-index --quiet --ignore-submodules=all HEAD --; then
echo 'Uncommitted changes detected:';
git diff-index HEAD --;
2015-04-09 11:41:12 +00:00
return 1;
fi;
}
script:
- make DEBUG=1 -j2 compare
2015-04-09 11:41:12 +00:00
- check_status
2020-06-29 00:26:44 +00:00
after_success:
- |-
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_OS_NAME" = linux ]; then
./.travis/webhook.sh
fi