Stop using the build directory in Travis CI and Appveyor

This commit is contained in:
Abel Sinkovics
2017-08-12 22:00:07 +02:00
parent 4dc388d015
commit e856748a78
2 changed files with 9 additions and 3 deletions
+5 -2
View File
@@ -145,9 +145,12 @@ script:
- git add -N .
- git diff --exit-code
- echo "Building the unit tests and the examples"
- cd build
- cd test
- ../../../b2 -d+2 ${CXXFLAGS}
- sed -i 's/#include <boost\/metaparse\/[^/]*\.hpp>/#include <boost\/metaparse.hpp>/' ../test/*.?pp
- sed -i 's/#include <boost\/metaparse\/[^/]*\.hpp>/#include <boost\/metaparse.hpp>/' *.?pp
- ../../../b2 -d+2 ${CXXFLAGS}
- cd ..
- cd example
- ../../../b2 -d+2 ${CXXFLAGS}
- cd ..
- echo "Generating the documentation"
+4 -1
View File
@@ -18,5 +18,8 @@ build_script:
- ..\..\..\b2 -d+2
- cd ..\..
- cd metaparse
- cd build
- cd test
- ..\..\..\b2 -d+2
- cd ..
- cd example
- ..\..\..\b2 -d+2