pokecrystal/.travis.yml

27 lines
582 B
YAML
Raw Normal View History

2017-03-21 16:08:02 +00:00
language: c
install:
- |-
path="$(pwd)"; cd;
wget https://github.com/rednex/rgbds/archive/v0.2.5.tar.gz -O rgbds.tar.gz &&
tar xf rgbds.tar.gz &&
cd rgbds-0.2.5 &&
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-29 03:44:39 +00:00
- make tools
2017-03-21 16:08:02 +00:00
- make crystal crystal11
- make compare
# - check_status