pokecrystal/.travis.yml

32 lines
727 B
YAML
Raw Normal View History

2017-03-21 16:08:02 +00:00
language: c
2018-07-01 02:28:13 +00:00
os:
- linux
- osx
2017-03-21 16:08:02 +00:00
install:
- |-
2019-02-10 00:30:23 +00:00
( cd
2020-09-15 12:36:11 +00:00
git clone -b v0.4.1 --depth=1 https://github.com/gbdev/rgbds
sudo make -C rgbds install
2019-02-10 00:30:23 +00:00
rm -rf rgbds
)
2017-03-21 16:08:02 +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 --;
return 1;
fi;
}
script:
- make DEBUG=1 -j2 compare
2017-12-29 03:23:13 +00:00
- check_status
after_success:
2019-02-10 00:30:23 +00:00
- |-
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_OS_NAME" = linux ]; then
./.travis/webhook.sh
if [ -n "$GITHUB_API_KEY" ]; then
./.travis/upload_symbols.sh
fi
2019-02-10 00:30:23 +00:00
fi