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
|
2020-07-21 19:43:56 -04:00
|
|
|
git clone -b v0.4.1 --depth=1 https://github.com/rednex/rgbds
|
2020-04-08 19:24:33 +02:00
|
|
|
sudo make -C rgbds install
|
2019-02-10 01:30:23 +01:00
|
|
|
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:
|
2020-07-07 21:09:05 -04:00
|
|
|
- make DEBUG=1 -j2 compare
|
2017-12-28 22:23:13 -05:00
|
|
|
- check_status
|
2019-01-01 12:05:34 +01:00
|
|
|
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
|
2020-06-20 22:39:45 -04:00
|
|
|
./.travis/webhook.sh
|
|
|
|
if [ -n "$GITHUB_API_KEY" ]; then
|
|
|
|
./.travis/upload_symbols.sh
|
|
|
|
fi
|
2019-02-10 01:30:23 +01:00
|
|
|
fi
|