Skip to content

Commit

Permalink
fix(ci): modernize to Conan v2
Browse files Browse the repository at this point in the history
 - Detect Conan build profile;
 - Use '-of' ("output folder") instead of '-if' ("install folder") in conan install.
  • Loading branch information
leha-bot committed Sep 19, 2023
1 parent 636945b commit b7bf3c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,22 @@ jobs:
# Install conan
- name: Get Conan
uses: turtlebrowser/[email protected]

# Detect the build profile for futher Conan interactions.
- name: Detect Conan build profile
run: conan profile detect

# Install dependencies in the same build folder as will be used in CMake. This path also will be used for CMake's find_package() mode
# via CMAKE_MODULE_PATH and CMAKE_PREFIX_PATH.
- name: Install dependencies
run: conan install . --build=missing -if ${{github.workspace}}/build -s build_type=${{env.BUILD_TYPE}}
run: conan install . --build=missing -of ${{github.workspace}}/conan-deps -s build_type=${{env.BUILD_TYPE}}

- name: Configure 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
# Also set PREFIX and MODULE paths for find_package() via CMAKE_MODULE_PATH and CMAKE_PREFIX_PATH variables.
# See https://cmake.org/cmake/help/latest/command/find_package.html?highlight=find_package for search modes.
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_PREFIX_PATH=${{github.workspace}}/build -DCMAKE_MODULE_PATH=${{github.workspace}}/build
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_PREFIX_PATH=${{github.workspace}}/conan-deps -DCMAKE_MODULE_PATH=${{github.workspace}}/conan-deps

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit b7bf3c5

Please sign in to comment.