2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Azure: provide full path to cxx in test.

[skip travis] [skip appveyor]
This commit is contained in:
Rene Rivera
2019-03-30 08:48:29 -05:00
parent 24b44b8487
commit d5ccb313cf

View File

@@ -28,7 +28,6 @@ jobs:
displayName: Install
- bash: |
set -e
which ${CXX}
cd src/engine
set PATH=${PATH};${CXX_PATH}
./build.sh ${TOOLSET}
@@ -36,9 +35,9 @@ jobs:
displayName: Build
- bash: |
set -e
which ${CXX}
CXX_PATH=`which ${CXX}`
cd test
echo "using ${TEST_TOOLSET} : : ${CXX} ;" > ${HOME}/user-config.jam
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam
python test_all.py ${TEST_TOOLSET}
cd ..
displayName: Test