Skip to content

Commit

Permalink
iwyu ci
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalff committed May 16, 2024
1 parent f9c81f2 commit da2e409
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Prepare CMake
run: |
mkdir build && cd build
CC="clang" CXX="clang++" cmake ..
CC="clang" CXX="clang++" cmake -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE="include-what-you-use;-w;-Xiwyu;--verbose=7" ..
- name: iwyu_tool
run: |
cd build
make CXX=include-what-you-use CXXFLAGS="-Xiwyu --error_always" 2> iwyu.log
make -k 2> iwyu.log
cat iwyu.log
# - uses: actions/upload-artifact@v3
Expand All @@ -52,5 +52,5 @@ jobs:
if: success() || failure()
with:
name: Logs (include-what-you-use)
path: ./*.log
path: ./build/*.log

0 comments on commit da2e409

Please sign in to comment.