-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GITHUB: cmake.yml: Removed boost fetch
No need to download it seperately, its a submodule now Signed-off-by: Oleg Vorobiov <[email protected]>
- Loading branch information
1 parent
6381129
commit b6ff102
Showing
1 changed file
with
1 addition
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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}} | ||
|