mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Enable continuous integration
This commit is contained in:
parent
c2efe700ac
commit
defd8ad8c7
26
.travis.yml
Normal file
26
.travis.yml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
language: c
|
||||||
|
install:
|
||||||
|
- sudo easy_install pypng
|
||||||
|
- path="$(pwd)"; cd; git clone git://github.com/bentley/rgbds.git && cd rgbds && sudo make install; cd "$path"
|
||||||
|
before_script:
|
||||||
|
- |-
|
||||||
|
function check_status() {
|
||||||
|
if ! git diff-index --quiet HEAD --; then
|
||||||
|
echo 'Uncommitted changes detected.';
|
||||||
|
return 1;
|
||||||
|
fi;
|
||||||
|
}
|
||||||
|
- |-
|
||||||
|
function verify() {
|
||||||
|
actual="$(md5sum "${1}" | cut -c 1-32)";
|
||||||
|
expected="${2}";
|
||||||
|
if [ "${actual}" != "${expected}" ]; then
|
||||||
|
echo "md5(${1}): expected ${2}, but got ${actual} instead.";
|
||||||
|
return 1;
|
||||||
|
fi;
|
||||||
|
}
|
||||||
|
script:
|
||||||
|
- make
|
||||||
|
- verify pokeblue.gbc 50927e843568814f7ed45ec4f944bd8b
|
||||||
|
- verify pokered.gbc 3d45c1ee9abd5738df46d2bdda8b57dc
|
||||||
|
- check_status
|
Loading…
Reference in a new issue