pokecrystal-board/.travis.yml

29 lines
638 B
YAML
Raw Normal View History

2017-03-21 17:08:02 +01:00
language: c
2018-06-30 22:28:13 -04:00
os:
- linux
- osx
2017-03-21 17:08:02 +01:00
install:
- |-
2019-02-10 01:30:23 +01:00
( cd
git clone --depth=1 https://github.com/rednex/rgbds
sudo make -C rgbds CFLAGS=-O2 install
rm -rf rgbds
)
2017-03-21 17:08:02 +01:00
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:
2017-12-25 19:16:37 -05:00
- make -j2 compare
2017-12-28 22:23:13 -05:00
- check_status
after_success:
2019-02-10 01:30:23 +01:00
- |-
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_OS_NAME" = linux ]; then
./.travis/webhook.sh
fi