Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Dec 1, 2023
1 parent fbbb0b0 commit dedc6cd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:
- name: "Install Conan"
run: conan install ${{ matrix.config.conan-file }} -s compiler.cppstd=20 --build=missing --output-folder=${{github.workspace}}/build
- name: "CMake Configuration"
run: cmake -B ${{github.workspace}}/build -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/build/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
shell: bash
env:
CC: gcc
CXX: g++
- name: "CMake Build"
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: "CMake Install"
Expand Down

0 comments on commit dedc6cd

Please sign in to comment.