mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
26 lines
513 B
YAML
26 lines
513 B
YAML
language: c
|
|
install:
|
|
- |-
|
|
path="$(pwd)"; cd;
|
|
git clone https://github.com/rednex/rgbds &&
|
|
cd rgbds &&
|
|
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:
|
|
- make tools
|
|
- make crystal crystal11
|
|
- make compare
|
|
# - check_status
|
|
|