Skip to content

Commit

Permalink
Change permissions for the fake tool
Browse files Browse the repository at this point in the history
  • Loading branch information
pzxmsry committed Jan 15, 2024
1 parent 3aa21c9 commit 031bfdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake_ctest_multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Create gcov for clang script
working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: echo '#!/bin/bash' >> gcov_for_clang && echo "exec llvm-cov gcov \"\$@\"" >> gcov_for_clang && sudo cp gcov_for_clang /bin
run: echo '#!/bin/bash' >> gcov_for_clang && echo "exec llvm-cov gcov \"\$@\"" >> gcov_for_clang && sudo cp gcov_for_clang /usr/bin && sudo chmod 755 /usr/bin/gcov_for_clang
if: ${{ matrix.os == 'ubuntu-latest' && matrix.c_compiler == 'clang' }}

- name: Gather coverage GCC
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Gather coverage Clang
working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: lcov --gcov-tool gcov_for_clang --capture --directory . | sed s@^SF:%s/@SF:@ > lcov.info
run: sudo lcov --gcov-tool gcov_for_clang --capture --directory . | sed s@^SF:%s/@SF:@ > lcov.info
if: ${{ matrix.os == 'ubuntu-latest' && matrix.c_compiler == 'clang' }}

- name: Coveralls Parallel
Expand Down

0 comments on commit 031bfdb

Please sign in to comment.