mirror of https://github.com/roytam1/UXP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
463 B
29 lines
463 B
language: c |
|
|
|
matrix: |
|
include: |
|
- os: linux |
|
compiler: gcc |
|
- os: linux |
|
compiler: gcc |
|
env: |
|
- EXTRA_FLAGS=-m32 |
|
addons: |
|
apt: |
|
packages: |
|
- gcc-multilib |
|
- os: osx |
|
compiler: clang |
|
- os: osx |
|
compiler: clang |
|
env: |
|
- EXTRA_FLAGS=-m32 |
|
|
|
before_script: |
|
- autoconf |
|
- ./configure${EXTRA_FLAGS:+ CC="$CC $EXTRA_FLAGS"} |
|
- make -j3 |
|
- make -j3 tests |
|
|
|
script: |
|
- make check
|
|
|