From 203dd546355cb4da6a606eab1aa23e3e836fa009 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 21 Dec 2020 14:02:36 +0530 Subject: [PATCH 01/10] Try to fix ci --- .ci/linux-steps.yaml | 7 ++++++- .ci/macos-steps.yaml | 2 +- .ci/windows-steps.yaml | 2 ++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.ci/linux-steps.yaml b/.ci/linux-steps.yaml index 758f577..a66be17 100644 --- a/.ci/linux-steps.yaml +++ b/.ci/linux-steps.yaml @@ -19,12 +19,17 @@ steps: sudo apt-get install -y --allow-unauthenticated liblapack-dev g++ libboost1.70-dev libarmadillo-dev xz-utils curl https://data.kurg.org/armadillo-8.400.0.tar.xz | tar -xvJ && cd armadillo* cmake . && make && sudo make install && cd .. + + # Install cereal. + wget https://github.com/USCiLab/cereal/archive/v1.3.0.tar.gz + tar -xvzpf v1.3.0.tar.gz # Unpack into cereal-1.3.0/. + cd cereal-1.3.0/ displayName: 'Install Build Dependencies' # Configure CMake Args for mlpack. - script: | unset BOOST_ROOT - cd mlpack && mkdir build && cd build && cmake $(CMakeArgs-mlpack) .. + cd mlpack && mkdir build && cd build && cmake $(CMakeArgs-mlpack) -DCEREAL_INCLUDE_DIR=../cereal-1.3.0/include/ .. displayName: 'CMake for mlpack' # Install mlpack diff --git a/.ci/macos-steps.yaml b/.ci/macos-steps.yaml index 64a8a9b..c8fc892 100644 --- a/.ci/macos-steps.yaml +++ b/.ci/macos-steps.yaml @@ -11,7 +11,7 @@ steps: sudo xcode-select --switch /Applications/Xcode_10.1.app/Contents/Developer unset BOOST_ROOT pip install cython numpy pandas zipp configparser - brew install openblas armadillo boost + brew install openblas armadillo boost cereal git clone --depth 1 https://github.com/mlpack/jenkins-conf.git conf git clone --depth 1 https://github.com/mlpack/mlpack.git displayName: 'Install Build Dependencies' diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index b4dd5a9..4813053 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -20,6 +20,7 @@ steps: nuget install boost_date_time-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install boost_regex-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install OpenBLAS -o $(Agent.ToolsDirectory) + nuget install unofficial-flayan-cereal -o $(Agent.ToolsDirectory) mkdir -p $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_program_options-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs @@ -49,6 +50,7 @@ steps: cd armadillo-8.400.0/ && cmake $(CMakeGenerator) \ -DBLAS_LIBRARY:FILEPATH=$(Agent.ToolsDirectory)/OpenBLAS.0.2.14.1/lib/native/lib/x64/libopenblas.dll.a \ -DLAPACK_LIBRARY:FILEPATH=$(Agent.ToolsDirectory)/OpenBLAS.0.2.14.1/lib/native/lib/x64/libopenblas.dll.a \ + -DCEREAL_INCLUDE_DIR=$(Agent.ToolsDirectory)\unofficial-flayan-cereal.1.2.2\build\native\include \ -DCMAKE_PREFIX:FILEPATH=../../armadillo \ -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_BUILD_TYPE=Release . From 052f8bba861f4f9d5b997238f144967a700ef056 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 21 Dec 2020 14:17:22 +0530 Subject: [PATCH 02/10] fix path for cereal --- .ci/linux-steps.yaml | 2 +- .ci/windows-steps.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/linux-steps.yaml b/.ci/linux-steps.yaml index a66be17..c85c4e7 100644 --- a/.ci/linux-steps.yaml +++ b/.ci/linux-steps.yaml @@ -29,7 +29,7 @@ steps: # Configure CMake Args for mlpack. - script: | unset BOOST_ROOT - cd mlpack && mkdir build && cd build && cmake $(CMakeArgs-mlpack) -DCEREAL_INCLUDE_DIR=../cereal-1.3.0/include/ .. + cd mlpack && mkdir build && cd build && cmake $(CMakeArgs-mlpack) -DCEREAL_INCLUDE_DIR=../../cereal-1.3.0/include/ .. displayName: 'CMake for mlpack' # Install mlpack diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index 4813053..81ab249 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -50,7 +50,6 @@ steps: cd armadillo-8.400.0/ && cmake $(CMakeGenerator) \ -DBLAS_LIBRARY:FILEPATH=$(Agent.ToolsDirectory)/OpenBLAS.0.2.14.1/lib/native/lib/x64/libopenblas.dll.a \ -DLAPACK_LIBRARY:FILEPATH=$(Agent.ToolsDirectory)/OpenBLAS.0.2.14.1/lib/native/lib/x64/libopenblas.dll.a \ - -DCEREAL_INCLUDE_DIR=$(Agent.ToolsDirectory)\unofficial-flayan-cereal.1.2.2\build\native\include \ -DCMAKE_PREFIX:FILEPATH=../../armadillo \ -DBUILD_SHARED_LIBS=OFF \ -DCMAKE_BUILD_TYPE=Release . @@ -81,6 +80,7 @@ steps: -DLAPACK_LIBRARIES:FILEPATH=$(Agent.ToolsDirectory)\OpenBLAS.0.2.14.1\lib\native\lib\x64\libopenblas.dll.a ` -DARMADILLO_INCLUDE_DIR="..\..\armadillo-8.400.0\include" ` -DARMADILLO_LIBRARY="..\..\armadillo-8.400.0\Release\armadillo.lib" ` + -DCEREAL_INCLUDE_DIR=$(Agent.ToolsDirectory)\unofficial-flayan-cereal.1.2.2\build\native\include ` -DBOOST_INCLUDEDIR=$(Agent.ToolsDirectory)\boost.1.60.0.0\lib\native\include ` -DBOOST_LIBRARYDIR=$(Agent.ToolsDirectory)\boost_libs ` -DBUILD_JULIA_BINDINGS=OFF ` From 697486801715d6caaee4782f0705b923987ced06 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 21 Dec 2020 21:24:24 +0530 Subject: [PATCH 03/10] no need of R binding in CI --- .ci/windows-steps.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index 81ab249..56b65a4 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -84,6 +84,7 @@ steps: -DBOOST_INCLUDEDIR=$(Agent.ToolsDirectory)\boost.1.60.0.0\lib\native\include ` -DBOOST_LIBRARYDIR=$(Agent.ToolsDirectory)\boost_libs ` -DBUILD_JULIA_BINDINGS=OFF ` + -DBUILD_R_BINDINGS=OFF ` -DCMAKE_BUILD_TYPE=Release .. displayName: 'Configure mlpack' From d258079594eb537f70e1e14ecc305bff24fc0baf Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 1 Mar 2021 00:43:24 +0530 Subject: [PATCH 04/10] Fix ci issue --- .ci/.ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.ci/.ci.yaml b/.ci/.ci.yaml index d532fa0..1bdfa6d 100644 --- a/.ci/.ci.yaml +++ b/.ci/.ci.yaml @@ -11,7 +11,7 @@ jobs: - job: Linux timeoutInMinutes: 360 pool: - vmImage: 'ubuntu-latest' + vmImage: ubuntu-16.04 steps: - template: linux-steps.yaml @@ -19,24 +19,24 @@ jobs: - job: macOS timeoutInMinutes: 360 pool: - vmImage: macOS-10.14 + vmImage: macOS-latest steps: - template: macos-steps.yaml # Windows build. -- job: WindowsVS15 +- job: WindowsVS16 timeoutInMinutes: 360 - displayName: Windows VS15 + displayName: Windows VS16 pool: - vmImage: vs2017-win2016 + vmImage: windows-2019 strategy: matrix: Plain: CMakeArgs-mlpack: '-DDEBUG=ON -DPROFILE=OFF -DBUILD_PYTHON_BINDINGS=OFF -DBUILD_TESTS=OFF' - CMakeGenerator: '-G "Visual Studio 15 2017 Win64"' - MSBuildVersion: '15.0' + CMakeGenerator: '-G "Visual Studio 16 2019"' + MSBuildVersion: '16.0' steps: - template: windows-steps.yaml \ No newline at end of file From d05f9509258d5f1bc59bc5a077b591050d572bf4 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 1 Mar 2021 00:54:03 +0530 Subject: [PATCH 05/10] Fix ci issue --- .ci/macos-steps.yaml | 8 ++++++-- .ci/windows-steps.yaml | 10 ++-------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.ci/macos-steps.yaml b/.ci/macos-steps.yaml index c8fc892..596a7e7 100644 --- a/.ci/macos-steps.yaml +++ b/.ci/macos-steps.yaml @@ -8,9 +8,13 @@ steps: # Install mlpack from master to get new functionalities instantly. - script: | set -e - sudo xcode-select --switch /Applications/Xcode_10.1.app/Contents/Developer + sudo xcode-select --switch /Applications/Xcode_12.2.app/Contents/Developer unset BOOST_ROOT - pip install cython numpy pandas zipp configparser + if [ "$(binding)" == "python" ]; then + pip install --upgrade pip + pip install cython numpy pandas zipp configparser + fi + brew install openblas armadillo boost cereal git clone --depth 1 https://github.com/mlpack/jenkins-conf.git conf git clone --depth 1 https://github.com/mlpack/mlpack.git diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index 56b65a4..1ae8aa1 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -10,10 +10,7 @@ steps: - powershell: | nuget install OpenBLAS -o $(Agent.ToolsDirectory) nuget install boost -o $(Agent.ToolsDirectory) -Version 1.60.0 - nuget install boost_unit_test_framework-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 - nuget install boost_program_options-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install boost_random-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 - nuget install boost_serialization-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install boost_math_c99-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install boost_filesystem-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 nuget install boost_system-vc140 -o $(Agent.ToolsDirectory) -Version 1.60.0 @@ -23,19 +20,16 @@ steps: nuget install unofficial-flayan-cereal -o $(Agent.ToolsDirectory) mkdir -p $(Agent.ToolsDirectory)/boost_libs - cp $(Agent.ToolsDirectory)/boost_program_options-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_math_c99-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_random-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs - cp $(Agent.ToolsDirectory)/boost_serialization-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs - cp $(Agent.ToolsDirectory)/boost_unit_test_framework-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_filesystem-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_system-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_date_time-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs cp $(Agent.ToolsDirectory)/boost_regex-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs git clone https://github.com/tronkko/dirent.git - cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.16.27023/include" - cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Tools/MSVC/14.16.27023/include" + cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.16.27023/include" + cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.16.27023/include" cp "dirent/include/dirent.h" "C:/Program Files (x86)/include" cp "dirent/include/dirent.h" "C:/Program Files/include" displayName: 'Fetch build dependencies' From b9fd4ca0d55c1ff401c8d8b30501760797596f73 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 1 Mar 2021 20:02:16 +0530 Subject: [PATCH 06/10] Fix ci issue --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8b9bfb..db53390 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,11 +63,7 @@ endif() # Remove this when serialization is removed from mlpack. set(Boost_ADDITIONAL_VERSIONS "1.49.0" "1.50.0" "1.51.0" "1.52.0" "1.53.0" "1.54.0" "1.55.0") -find_package(Boost 1.49 - COMPONENTS - serialization - REQUIRED -) +find_package(Boost 1.49) # In Visual Studio, automatic linking is performed, so we don't need to worry # about it. Clear the list of libraries to link against and let Visual Studio From 22c5308f3ebd9481f5a1a991001e02a198bea1a4 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 1 Mar 2021 21:33:13 +0530 Subject: [PATCH 07/10] Fix ci issue --- .ci/linux-steps.yaml | 2 +- .ci/windows-steps.yaml | 1 + CMakeLists.txt | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.ci/linux-steps.yaml b/.ci/linux-steps.yaml index c85c4e7..d92d0cb 100644 --- a/.ci/linux-steps.yaml +++ b/.ci/linux-steps.yaml @@ -43,7 +43,7 @@ steps: displayName: 'Installing Protobuf' # Configure mlboard (CMake) -- script: mkdir build && cd build && cmake .. +- script: mkdir build && cd build && cmake -DCEREAL_INCLUDE_DIR=../../cereal-1.3.0/include/ .. displayName: 'CMake for mlboard' # Build mlboard diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index 1ae8aa1..f4910b5 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -137,6 +137,7 @@ steps: -DBOOST_LIBRARYDIR=$(Agent.ToolsDirectory)\boost_libs ` -DARMADILLO_INCLUDE_DIR="..\armadillo-8.400.0\include" ` -DARMADILLO_LIBRARY="..\armadillo-8.400.0\Release\armadillo.lib" ` + -DCEREAL_INCLUDE_DIR=$(Agent.ToolsDirectory)\unofficial-flayan-cereal.1.2.2\build\native\include ` -DProtobuf_INCLUDE_DIR="..\protobuf\src\" ` -DPROTOBUF_LIBRARY="$(Agent.ToolsDirectory)\boost_libs\libprotobuf.lib" ` -DProtobuf_PROTOC_EXECUTABLE="..\protobuf\cmake\solution\Release\protoc.exe" ` diff --git a/CMakeLists.txt b/CMakeLists.txt index db53390..12013bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,6 +5,7 @@ project(mlboard # Set required C++ standard to C++11. set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CEREAL_VERSION "1.1.2") # Include modules in the CMake directory. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMake") @@ -65,6 +66,8 @@ set(Boost_ADDITIONAL_VERSIONS "1.49.0" "1.50.0" "1.51.0" "1.52.0" "1.53.0" "1.54.0" "1.55.0") find_package(Boost 1.49) +find_package(cereal "${CEREAL_VERSION}" REQUIRED) + # In Visual Studio, automatic linking is performed, so we don't need to worry # about it. Clear the list of libraries to link against and let Visual Studio # handle it. @@ -92,6 +95,7 @@ add_subdirectory(include/proto) include_directories(${CMAKE_CURRENT_BINARY_DIR}) set(MLBOARD_INCLUDE_DIRS ${MLPACK_INCLUDE_DIR} + ${CEREAL_INCLUDE_DIR} ${ARMADILLO_INCLUDE_DIR} ${PROTOBUF_INCLUDE_DIR} ) From ed9f21d2cccaa66dee3d860783c03c08c72541d4 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Mon, 1 Mar 2021 22:23:33 +0530 Subject: [PATCH 08/10] Fix ci issue --- CMake/Findcereal.cmake | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 CMake/Findcereal.cmake diff --git a/CMake/Findcereal.cmake b/CMake/Findcereal.cmake new file mode 100644 index 0000000..dd54d36 --- /dev/null +++ b/CMake/Findcereal.cmake @@ -0,0 +1,56 @@ +#Findcereal.cmake +find_path(CEREAL_INCLUDE_DIR + NAMES cereal + PATHS "$ENV{ProgramFiles}/cereal/include" + ) + +if(CEREAL_INCLUDE_DIR) + # ------------------------------------------------------------------------ + # Extract version information from + # ------------------------------------------------------------------------ + set(CEREAL_FOUND YES) + set(CEREAL_VERSION_MAJOR 0) + set(CEREAL_VERSION_MINOR 0) + set(CEREAL_VERSION_PATCH 0) + + if(EXISTS "${CEREAL_INCLUDE_DIR}/cereal/version.hpp") + + # Read and parse cereal version header file for version number + file(READ "${CEREAL_INCLUDE_DIR}/cereal/version.hpp" + _CEREAL_HEADER_CONTENTS) + string(REGEX REPLACE ".*#define CEREAL_VERSION_MAJOR ([0-9]+).*" "\\1" + CEREAL_VERSION_MAJOR "${_CEREAL_HEADER_CONTENTS}") + string(REGEX REPLACE ".*#define CEREAL_VERSION_MINOR ([0-9]+).*" "\\1" + CEREAL_VERSION_MINOR "${_CEREAL_HEADER_CONTENTS}") + string(REGEX REPLACE ".*#define CEREAL_VERSION_PATCH ([0-9]+).*" "\\1" + CEREAL_VERSION_PATCH "${_CEREAL_HEADER_CONTENTS}") + + elseif(EXISTS "${CEREAL_INCLUDE_DIR}/cereal/details/polymorphic_impl_fwd.hpp") + + set(CEREAL_VERSION_MAJOR 1) + set(CEREAL_VERSION_MINOR 2) + set(CEREAL_VERSION_PATCH 0) + elseif(EXISTS "${CEREAL_INCLUDE_DIR}/cereal/types/valarray.hpp") + + set(CEREAL_VERSION_MAJOR 1) + set(CEREAL_VERSION_MINOR 1) + set(CEREAL_VERSION_PATCH 2) + elseif(EXISTS "${CEREAL_INCLUDE_DIR}/cereal/cereal.hpp") + + set(CEREAL_VERSION_MAJOR 1) + set(CEREAL_VERSION_MINOR 1) + set(CEREAL_VERSION_PATCH 1) +else() + + set(CEREAL_FOUND NO) + endif() + set(CEREAL_VERSION_STRING "${CEREAL_VERSION_MAJOR}.${CEREAL_VERSION_MINOR}.${CEREAL_VERSION_PATCH}") +endif () + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(cereal + REQUIRED_VARS CEREAL_INCLUDE_DIR + VERSION_VAR CEREAL_VERSION_STRING + ) + +mark_as_advanced(CEREAL_INCLUDE_DIR) \ No newline at end of file From f2ccce6ce866d8708f08bf1e2328c3cdd3c83510 Mon Sep 17 00:00:00 2001 From: jeffin143 Date: Tue, 2 Mar 2021 00:13:44 +0530 Subject: [PATCH 09/10] fix dirent install location --- .ci/windows-steps.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/windows-steps.yaml b/.ci/windows-steps.yaml index f4910b5..04246c4 100644 --- a/.ci/windows-steps.yaml +++ b/.ci/windows-steps.yaml @@ -28,8 +28,8 @@ steps: cp $(Agent.ToolsDirectory)/boost_regex-vc140.1.60.0.0/lib/native/address-model-64/lib/*.* $(Agent.ToolsDirectory)/boost_libs git clone https://github.com/tronkko/dirent.git - cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.16.27023/include" - cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.16.27023/include" + cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/include" + cp "dirent/include/dirent.h" "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/include" cp "dirent/include/dirent.h" "C:/Program Files (x86)/include" cp "dirent/include/dirent.h" "C:/Program Files/include" displayName: 'Fetch build dependencies' From 087e7ffe81a0d3f1be97eed2ae9c1d24614da4b7 Mon Sep 17 00:00:00 2001 From: jeffin sam Date: Sat, 14 Aug 2021 20:56:29 +0530 Subject: [PATCH 10/10] Fix path for cereal --- .ci/linux-steps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/linux-steps.yaml b/.ci/linux-steps.yaml index d92d0cb..09501c1 100644 --- a/.ci/linux-steps.yaml +++ b/.ci/linux-steps.yaml @@ -43,7 +43,7 @@ steps: displayName: 'Installing Protobuf' # Configure mlboard (CMake) -- script: mkdir build && cd build && cmake -DCEREAL_INCLUDE_DIR=../../cereal-1.3.0/include/ .. +- script: mkdir build && cd build && cmake -DCEREAL_INCLUDE_DIR=../cereal-1.3.0/include/ .. displayName: 'CMake for mlboard' # Build mlboard