File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 6363 conan install .. --output-folder=. --build=missing --settings compiler.cppstd=20
6464 fi
6565
66- cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONAN=ON -DENABLE_NODE_BINDINGS=ON -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake ..
67- cmake --build . --config Release
66+ ls -la
67+
68+ # cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONAN=ON -DENABLE_NODE_BINDINGS=ON -DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake ..
69+ # cmake --build . --config Release
6870
6971 # # TODO: MSVC goes out of memory when building our tests
7072 # # - name: Run tests
@@ -538,7 +540,7 @@ jobs:
538540 # sed -i '' 's/compiler.cppstd=.*$/compiler.cppstd=20/' ~/.conan/profiles/default
539541
540542 if [[ "${ENABLE_CONAN}" == "ON" ]]; then
541- conan install .. --output-folder=. --build=missing --settings compiler.cppstd=20
543+ conan install .. --output-folder=. --build=missing --settings compiler.cppstd=20 --settings build_type=Debug
542544 fi
543545
544546 ccache --zero-stats
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ class OsrmConan(ConanFile):
1111 "onetbb/2021.12.0" ,
1212 )
1313 generators = "CMakeDeps"
14+
15+ def requirements (self ):
16+ self .options ["boost" ].without_python = True
17+ self .options ["boost" ].without_coroutine = True
1418
1519 def generate (self ):
1620 tc = CMakeToolchain (self )
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ const static std::string IO_TOO_SMALL_FILE = "file_too_small_test_io.tmp";
1717const static std::string IO_CORRUPT_FINGERPRINT_FILE = " corrupt_fingerprint_file_test_io.tmp" ;
1818const static std::string IO_INCOMPATIBLE_FINGERPRINT_FILE =
1919 " incompatible_fingerprint_file_test_io.tmp" ;
20- const static std::string IO_TEXT_FILE = " plain_text_file.tmp" ;
2120
2221using namespace osrm ;
2322
You can’t perform that action at this time.
0 commit comments