32 lines
760 B
YAML
32 lines
760 B
YAML
language: cpp
|
|
|
|
sudo: false
|
|
|
|
compiler: clang
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
osx_image: xcode7
|
|
- os: linux
|
|
- 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}
|