mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
50c52d2b0f
Create a clean, minimal, cross-platform Travis script with a build matrix for testing different operating systems and architectures.
16 lines
298 B
YAML
16 lines
298 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: c
|
|
|
|
script:
|
|
- make $FLAGS
|
|
- make check $FLAGS
|
|
- make clean && git status --ignored --porcelain && test -z "$(git status --ignored --porcelain)"
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
env: FLAGS="CC=gcc"
|
|
|
|
notifications:
|
|
email: false
|