From d5ccb313cf4f33859dd8623ae8d32262d72e50ce Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 30 Mar 2019 08:48:29 -0500 Subject: [PATCH] Azure: provide full path to cxx in test. [skip travis] [skip appveyor] --- azure-pipelines.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 81874dbf4..2bb7f5256 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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