mirror of
https://github.com/boostorg/build.git
synced 2026-01-19 04:02:14 +00:00
23 lines
457 B
YAML
23 lines
457 B
YAML
steps:
|
|
- bash: |
|
|
set -e
|
|
uname -a
|
|
./.ci/linux-cxx-install.sh
|
|
displayName: Install
|
|
- bash: |
|
|
set -e
|
|
cd src/engine
|
|
set PATH=${PATH};${CXX_PATH}
|
|
./build.sh ${TOOLSET}
|
|
./b2 -v
|
|
cd ../..
|
|
./src/engine/b2 -a ${SANITIZER}=on optimization=debug toolset=${TOOLSET} b2
|
|
displayName: Build
|
|
- bash: |
|
|
set -e
|
|
export B2=`find ${PWD}/.build -name b2b2`
|
|
cd test
|
|
./test_all.py ${TOOLSET}
|
|
cd ..
|
|
displayName: Test
|