Update yml to handle Boost Build bug with explicit alias when not invoking b2 from the test directory.

This commit is contained in:
Edward Diener
2020-09-19 17:46:22 -04:00
parent cac5e3e2ef
commit 6ec9072f27
2 changed files with 6 additions and 2 deletions

View File

@ -394,7 +394,9 @@ install:
script: script:
- |- - |-
echo "using $TOOLSET : : $COMPILER ;" > ~/user-config.jam echo "using $TOOLSET : : $COMPILER ;" > ~/user-config.jam
- ./b2 -j 3 libs/preprocessor/test toolset=$TOOLSET cxxstd=$CXXSTD $PPLIMITS - cd libs/preprocessor/test
- ../../../b2 -j 3 toolset=$TOOLSET cxxstd=$CXXSTD $PPLIMITS
- cd ../../..
notifications: notifications:
email: email:

View File

@ -84,7 +84,9 @@ for:
- if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD%
- if not "%ADDRMD%" == "" set ADDRMD=address-model=%ADDRMD% - if not "%ADDRMD%" == "" set ADDRMD=address-model=%ADDRMD%
- if not "%PREPROCESSOR%" == "" set PREPROCESSOR=cflags="%PREPROCESSOR%" - if not "%PREPROCESSOR%" == "" set PREPROCESSOR=cflags="%PREPROCESSOR%"
- b2 -j3 libs/preprocessor/test toolset=%TOOLSET% %CXXSTD% %ADDRMD% %PREPROCESSOR% variant=debug,release %PPLIMITS% - cd libs/preprocessor/test
- ../../../b2 -j3 toolset=%TOOLSET% %CXXSTD% %ADDRMD% %PREPROCESSOR% variant=debug,release %PPLIMITS%
- cd ../../..
- -
matrix: matrix: