37 lines
943 B
YAML
37 lines
943 B
YAML
language: cpp
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
env: MASON_PLATFORM=osx
|
|
compiler: clang
|
|
- os: linux
|
|
env: MASON_PLATFORM=linux
|
|
compiler: clang
|
|
addons:
|
|
apt:
|
|
sources: [ 'ubuntu-toolchain-r-test' ]
|
|
packages: [ 'libstdc++-5-dev' ]
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=arm-v5
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=arm-v7
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=arm-v8
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=x86
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=x86-64
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=mips
|
|
- os: linux
|
|
env: MASON_PLATFORM=android MASON_ANDROID_ABI=mips-64
|
|
|
|
script:
|
|
- ./mason build ${MASON_NAME} ${MASON_VERSION}
|
|
|
|
after_success:
|
|
- ./mason publish ${MASON_NAME} ${MASON_VERSION}
|