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.
23 lines
600 B
23 lines
600 B
#!/usr/bin/env sh
|
|
# This is called by `.travis.yml` via Travis CI.
|
|
# Travis supplies $TRAVIS_OS_NAME.
|
|
# http://docs.travis-ci.com/user/multi-os/
|
|
# Our .travis.yml also defines:
|
|
# - SHARED_LIB=ON/OFF
|
|
# - STATIC_LIB=ON/OFF
|
|
# - CMAKE_PKG=ON/OFF
|
|
# - BUILD_TYPE=release/debug
|
|
# - VERBOSE_MAKE=false/true
|
|
# - VERBOSE (set or not)
|
|
|
|
# -e: fail on error
|
|
# -v: show commands
|
|
# -x: show expanded commands
|
|
set -vex
|
|
|
|
env | sort
|
|
|
|
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
|
|
ninja -v -C build-${LIB_TYPE}
|
|
ninja -v -C build-${LIB_TYPE} test
|
|
rm -r build-${LIB_TYPE}
|
|
|