pokecrystal-board/.travis.yml

26 lines
513 B
YAML
Raw Normal View History

2017-03-21 17:08:02 +01:00
language: c
install:
- |-
path="$(pwd)"; cd;
2017-06-17 20:09:37 -04:00
git clone https://github.com/rednex/rgbds &&
cd rgbds &&
2017-03-21 17:08:02 +01: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-05-28 23:44:39 -04:00
- make tools
2017-03-21 17:08:02 +01:00
- make crystal crystal11
- make compare
# - check_status