NS/.travis.yml

25 lines
553 B
YAML
Raw Normal View History

2018-04-29 22:37:58 +00:00
language: cpp
matrix:
2018-04-29 22:41:39 +00:00
include:
2018-04-30 04:47:57 +00:00
- os: linux
compiler: gcc
script: cd main/source/linux && make
env: OPJ_CI_ARCH=i386
addons:
apt:
sources:
- ubuntu-toolchain-r-test
2018-04-30 04:47:57 +00:00
packages:
- gcc-7-multilib
- g++-7-multilib
2018-04-30 04:47:57 +00:00
- libc6-i386
- libcurl4-openssl-dev:i386
- libpng12-dev:i386
2018-04-29 22:37:58 +00:00
2018-04-29 22:41:39 +00:00
- os: osx
compiler: clang
before_script:
- export CC=clang
- export CPLUS=clang++
script: cd main/source/linux && make