-
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.
Signed-off-by: Oleg Vorobiov <[email protected]>
- Loading branch information
1 parent
8e8dc47
commit 7e349a4
Showing
4 changed files
with
27 additions
and
22 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 |
---|---|---|
|
@@ -28,31 +28,21 @@ jobs: | |
- name: Clone submodules | ||
run: git submodule init && git submodule update | ||
|
||
- name: Python Setup | ||
uses: actions/setup-python@v1 | ||
- name: Download and Install Boost | ||
uses: MarkusJx/[email protected] | ||
with: | ||
python-version: '3.x' | ||
- uses: ./.github/actions/setup-conan | ||
|
||
- name: Downloading Windows Dependencies | ||
if: runner.os == 'Windows' | ||
run: | | ||
${boostroot} = "${env:GITHUB_WORKSPACE}\boost_install" | ||
conan install boost/1.72.0@ -o boost:header_only=True -g deploy --install-folder ${boostroot} | ||
dir ${boostroot} | ||
dir ${boostroot}\boost | ||
echo "BOOST_ROOT=${boostroot}\boost" >> ${env:GITHUB_ENV} | ||
- name: Downloading Linux Dependencies | ||
if: runner.os != 'Windows' | ||
run: | | ||
sudo apt-get install -y libboost-dev | ||
boost_version: 1.73.0 | ||
|
||
# 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}} | ||
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: "./boost/boost" | ||
|
||
- name: Configure Poser Cmake | ||
run: cmake bindings/cpp/examples/uduTest -B ${{github.workspace}}/poser_build -DCMAKE_BUILD_TYPE=${{inputs.buildType}} | ||
|
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
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
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