mirror of
https://github.com/gbdev/rgbds.git
synced 2025-12-04 16:57:47 +00:00
Travis seems to be having some problems with OSX builds, so it's better to disable them temporarily. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
16 lines
237 B
YAML
16 lines
237 B
YAML
language: c
|
|
sudo: required
|
|
install:
|
|
- ./.travis-deps.sh
|
|
os:
|
|
- linux
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
script:
|
|
- make
|
|
- sudo make install
|
|
after_success:
|
|
- pushd test/asm/ && ./test.sh && popd
|
|
- pushd test/link/ && ./test.sh && popd
|