38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
|
#!/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 REPO_NAME=$DRONE_REPO
|
||
|
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
|
||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/assert.git ../assert
|
||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/config.git ../config
|
||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/core.git ../core
|
||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/static_assert.git ../static_assert
|
||
|
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/throw_exception.git ../throw_exception
|
||
|
|
||
|
echo '==================================> BEFORE_SCRIPT'
|
||
|
|
||
|
. $DRONE_BUILD_DIR/.drone/before-script.sh
|
||
|
|
||
|
echo '==================================> SCRIPT'
|
||
|
|
||
|
mkdir __build__ && cd __build__
|
||
|
cmake ../test/test_cmake
|
||
|
cmake --build .
|
||
|
|
||
|
echo '==================================> AFTER_SUCCESS'
|
||
|
|
||
|
. $DRONE_BUILD_DIR/.drone/after-success.sh
|