mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
This is good for debugging Makefiles on systems I don't have (eg. macOS) End users will not be affected by this, and CI provides a persistent log so clobbering isn't much of an issue.
20 lines
276 B
YAML
20 lines
276 B
YAML
language: c
|
|
sudo: required
|
|
install:
|
|
- ./.travis-deps.sh
|
|
- make Q=
|
|
- sudo make install Q=
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
script:
|
|
- cd test && ./run-tests.sh
|
|
matrix:
|
|
include:
|
|
- env: _="checkpatch"
|
|
script:
|
|
- ./.travis-checkpatch.sh
|