pokecrystal/.travis.yml

26 lines
495 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:
- |-
path="$(pwd)"; cd;
2017-06-18 00:09:37 +00:00
git clone https://github.com/rednex/rgbds &&
cd rgbds &&
2017-03-21 16:08:02 +00:00
sudo make install &&
cd - &&
rm -rf rgbds &&
cd "$path"
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-26 00:16:37 +00:00
- make -j2 compare
2017-12-29 03:23:13 +00:00
- check_status