Skip to content

Commit

Permalink
debug cmake/conan
Browse files Browse the repository at this point in the history
  • Loading branch information
pasbi committed Oct 3, 2024
1 parent a5ad037 commit 1d62d2d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
compiler: msvc
include:
- compiler: gcc
generator: "Ninja"
generator: "Unix Makefiles"
cppstd: gnu20
libcxx: libstdc++
compiler_version: 11
Expand Down Expand Up @@ -100,14 +100,15 @@ jobs:
run: cat ${{ env.CONAN_HOME }}/profiles/default

- name: list packages
if: ${{ matrix.os == 'ubuntu-latest' }}
run: dpkg --list

- name: Install Dependencies
run: conan install . --build=missing --output-folder=build

- name: Build
run: |
cmake -G "${{ matrix.generator }}" -S . -B build -DCMAKE_TOOLCHAIN_FILE="build/generators/conan_toolchain.cmake" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake -G "${{ matrix.generator }}" -S . -B build -DCMAKE_TOOLCHAIN_FILE="build/build/generators/conan_toolchain.cmake" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build --config ${{ matrix.build_type }} --parallel
- name: Test
Expand Down

0 comments on commit 1d62d2d

Please sign in to comment.