Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthu3375 authored Jul 7, 2024
1 parent cbbdce6 commit 1afae2d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
compiler:
# you can specify the version after `-` like "llvm-13.0.0".
- llvm
- gcc
- gcc-11.4.0
- msvc
build_type:
- Release
Expand Down Expand Up @@ -170,10 +170,10 @@ jobs:
compiler: gcc
build_type: Release
log-level: "OFF"
env:
CC: /usr/bin/gcc-11.4.0
CXX: /usr/bin/g++-11.4.0
GCOV: gcov-11.4.0
# env:
# CC: /usr/bin/gcc-11.4.0
# CXX: /usr/bin/g++-11.4.0
# GCOV: gcov-11.4.0

steps:

Expand Down Expand Up @@ -233,6 +233,7 @@ jobs:
conan profile detect
- name: Create custom conan profile
if: ${{ runner.os != 'Windows' }}
run: |
mkdir -p ~/.conan/profiles
conan profile detect --force
Expand All @@ -248,6 +249,7 @@ jobs:
cmake -S . -B ./build -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DCMAKE_TOOLCHAIN_FILE="build/${{matrix.build_type}}/generators/conan_toolchain.cmake" -DENABLE_MAIN=TRUE -DENABLE_TESTING=TRUE -DENABLE_COVERAGE:BOOL=${{ matrix.build_type == 'Debug' }} -DENABLE_DOXYGEN=OFF -DLOG_LEVEL:STRING=${{matrix.log-level}} -DWARNINGS_AS_ERRORS:BOOL=${{ !contains(matrix.os, 'windows' )}} -DENABLE_CPPCHECK=OFF -DENABLE_CLANG_TIDY=OFF -DENABLE_INCLUDE_WHAT_YOU_USE=OFF
- name: Check GCC version
if: ${{ runner.os != 'Windows' }}
run: |
gcc --version
g++ --version
Expand Down

0 comments on commit 1afae2d

Please sign in to comment.