Files
jzmaddock 8520f3391e Drone CI update.
* Drone: use drone.sh
* Update names of environment variables as recommended by the latest CI scripts.

Co-authored-by: sdarwin <samuel.d.darwin@gmail.com>
2026-07-08 18:33:16 +01:00

49 lines
1.6 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
git submodule update --init libs/throw_exception
git submodule update --init libs/preprocessor
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 $B2_TOOLSET : : $B2_COMPILER : <cxxflags>$EXTRA_FLAGS <linkflags>$EXTRA_FLAGS ;" > ~/user-config.jam
./b2 libs/config/test//print_config_info libs/config/test//print_math_info B2_TOOLSET=$B2_TOOLSET B2_CXXSTD=$B2_CXXSTD $B2_CXXSTD_DIALECT
./b2 -j3 libs/config/test B2_TOOLSET=$B2_TOOLSET B2_CXXSTD=$B2_CXXSTD $B2_CXXSTD_DIALECT
echo '==================================> AFTER_SUCCESS'
. $DRONE_BUILD_DIR/.drone/after-success.sh