Skip to content

Commit

Permalink
Add env CC to the new gcc-13 as it was not used otherwise
Browse files Browse the repository at this point in the history
  • Loading branch information
Letme committed Jan 12, 2025
1 parent 7fb63a1 commit 6c60320
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/c-cpp-coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt-get install -y gcc-${{ matrix.gcc_version }} ruby rake gcc-multilib lcov wget
pip install gcovr==8.2
pip install --user gcovr==8.2
wget https://github.com/ThrowTheSwitch/Ceedling/releases/download/v1.0.0/ceedling-1.0.0.gem -O ceedling.gem
sudo gem install ceedling.gem
sudo gem install coveralls-lcov
Expand All @@ -37,7 +37,9 @@ jobs:
cd -
- name: Make coverage
run: |
make CC=gcc coverage
make coverage
env:
CC: gcc-${{ matrix.gcc_version }}
- name: Submit results to Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit 6c60320

Please sign in to comment.