Skip to content

Commit

Permalink
GITHUB: cmake.yml: Removed boost fetch
Browse files Browse the repository at this point in the history
No need to download it seperately, its a submodule now

Signed-off-by: Oleg Vorobiov <[email protected]>
  • Loading branch information
okawo80085 committed Aug 9, 2022
1 parent 6381129 commit b6ff102
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,11 @@ jobs:
uses: actions/checkout@v3

- name: Clone submodules
run: git submodule init && git submodule update

- name: Download and Install Boost
uses: MarkusJx/[email protected]
with:
boost_version: 1.73.0
run: git submodule update --init --recursive --jobs $(nproc)

# Configure CMake projects
- name: Configure Driver CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake driver -B ${{github.workspace}}/driver_build -DCMAKE_BUILD_TYPE=${{inputs.buildType}}
# -DBoost_INCLUDE_DIR=${{steps.install-boost.outputs.BOOST_ROOT}}/include\
# -DBoost_LIBRARY_DIRS=${{steps.install-boost.outputs.BOOST_ROOT}}/lib
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}

- name: Configure Poser Cmake
run: cmake bindings/cpp/examples/uduTest -B ${{github.workspace}}/poser_build -DCMAKE_BUILD_TYPE=${{inputs.buildType}}
Expand Down

0 comments on commit b6ff102

Please sign in to comment.