Remove unnecessary python3 environment from osx that made configuring the test environment slower. Use "addon:" features for installing homebrew packages more efficiently. Re-organized the .travis.yml file in a standard order so that the "before-install" and "install" steps occur after the configurations of addons and matrix, and language features are set.
35 lines
786 B
Bash
Executable File
35 lines
786 B
Bash
Executable File
#!/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
|
|
|
|
which python3
|
|
which meson
|
|
which ninja
|
|
echo ${CXX}
|
|
${CXX} --version
|
|
python3 --version
|
|
meson --version
|
|
ninja --version
|
|
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
|
|
ninja -v -C build-${LIB_TYPE}
|
|
#ninja -v -C build-${LIB_TYPE} test
|
|
cd build-${LIB_TYPE}
|
|
meson test --no-rebuild --print-errorlogs
|
|
cd -
|
|
rm -r build-${LIB_TYPE}
|