pokered/.travis.yml

25 lines
547 B
YAML
Raw Normal View History

2015-04-09 11:41:12 +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"
2015-04-09 11:41:12 +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 --;
2015-04-09 11:41:12 +00:00
return 1;
fi;
}
script:
- make
- make compare
2015-04-09 11:41:12 +00:00
- check_status