mirror of
https://github.com/boostorg/math.git
synced 2026-01-19 04:22:09 +00:00
* Remove tests we don't need right now. !!!REVERT THIS COMMIT BEFORE MERGING!!! * Add s390x testing to drone. * Correct drone file. * Correct drone file (again) * Prevent complete cancellation in bessel_jy logic. * Correct testing for 128-bit floats. * Make some more tests 128-bit long double safe. * Make more tests 128-bit float safe. * Fix some more 128-bit testing issues. * More 128-bit float fixes. * Make more tests 128-bit float safe. * Fix up remaining tests for 128-bit floats. * Yet more 128-bit float test case fixes. * Fix up more tests for 128-bit floats and non-intel platforms. * Fix up more tests to be 128-bit long double safe. * More test case adjustments. * More 128-bit float error rate adjustments. * Fixes for autodiff tests * Two more test fixes. * Fix up daubechies_scaling_test.cpp and reinstate full CI. Co-authored-by: Matt Borland <matt@mattborland.com>
49 lines
1.5 KiB
Bash
Executable File
49 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'
|
|
|
|
cd ..
|
|
if [ "$DRONE_BRANCH" == "master" ] || [[ "$DRONE_BRANCH" == */master ]]; then
|
|
export BOOST_BRANCH="master"
|
|
else
|
|
export BOOST_BRANCH="develop"
|
|
fi
|
|
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 libs/config
|
|
git submodule update --init libs/polygon
|
|
git submodule update --init tools/boost_install
|
|
git submodule update --init libs/headers
|
|
git submodule update --init tools/boostdep
|
|
cp -r $TRAVIS_BUILD_DIR/* libs/math
|
|
python tools/boostdep/depinst/depinst.py math
|
|
./bootstrap.sh
|
|
./b2 headers
|
|
|
|
echo '==================================> BEFORE_SCRIPT'
|
|
|
|
. $DRONE_BUILD_DIR/.drone/before-script.sh
|
|
|
|
echo '==================================> SCRIPT'
|
|
|
|
echo "using $TOOLSET : : $COMPILER : <cxxflags>-std=$CXXSTD $OPTIONS ;" > ~/user-config.jam
|
|
(cd libs/config/test && ../../../b2 print_config_info print_math_info toolset=$TOOLSET)
|
|
(cd libs/math/test && ../../../b2 -j3 toolset=$TOOLSET $TEST_SUITE)
|
|
|
|
echo '==================================> AFTER_SUCCESS'
|
|
|
|
. $DRONE_BUILD_DIR/.drone/after-success.sh
|