mirror of
https://github.com/boostorg/config.git
synced 2025-10-18 18:35:27 +02:00
47 lines
1.5 KiB
Bash
Executable File
47 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
export TRAVIS_BUILD_DIR=$(pwd)
|
|
export DRONE_BUILD_DIR=$(pwd)
|
|
export TRAVIS_BRANCH=$DRONE_BRANCH
|
|
export VCS_COMMIT_ID=$DRONE_COMMIT
|
|
export GIT_COMMIT=$DRONE_COMMIT
|
|
export PATH=~/.local/bin:/usr/local/bin:$PATH
|
|
|
|
echo '==================================> BEFORE_INSTALL'
|
|
|
|
. .drone/before-install.sh
|
|
|
|
echo '==================================> INSTALL'
|
|
|
|
BOOST_BRANCH=develop && [ "$TRAVIS_BRANCH" == "master" ] && BOOST_BRANCH=master || true
|
|
cd ..
|
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
|
|
cd boost-root
|
|
git submodule update --init tools/build
|
|
git submodule update --init tools/boost_install
|
|
git submodule update --init libs/headers
|
|
git submodule update --init libs/detail
|
|
git submodule update --init libs/core
|
|
git submodule update --init libs/assert
|
|
git submodule update --init libs/type_traits
|
|
cp -r $TRAVIS_BUILD_DIR/* libs/config
|
|
./bootstrap.sh
|
|
./b2 headers
|
|
|
|
echo '==================================> BEFORE_SCRIPT'
|
|
|
|
. $DRONE_BUILD_DIR/.drone/before-script.sh
|
|
|
|
echo '==================================> SCRIPT'
|
|
|
|
if [ $TEST_INTEL ]; then source ~/.bashrc; fi
|
|
echo "using $TOOLSET : : $COMPILER : <cxxflags>$EXTRA_FLAGS <linkflags>$EXTRA_FLAGS ;" > ~/user-config.jam
|
|
./b2 libs/config/test//print_config_info libs/config/test//print_math_info toolset=$TOOLSET cxxstd=$CXXSTD $CXXSTD_DIALECT
|
|
./b2 -j3 libs/config/test toolset=$TOOLSET cxxstd=$CXXSTD $CXXSTD_DIALECT
|
|
|
|
echo '==================================> AFTER_SUCCESS'
|
|
|
|
. $DRONE_BUILD_DIR/.drone/after-success.sh
|
|
|