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