Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
travis: Add *.cu and *.cuh to clang-format pass.
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOberhumer committed Nov 27, 2018
1 parent 6f46b68 commit aca01ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ before_install:
- |
if [ "$TRAVIS_OS_NAME" = linux ]; then
echo "Checking format of sourcecode..."
find . -type f \( -name '*.cpp' -o -name '*.h' \) -print0 | xargs -r0 clang-format -i
find . -type f \( -name '*.cpp' -o -name '*.h' -o -name '*.cu' -o -name '*.cuh' \) -print0 | xargs -r0 clang-format -i
git diff --color # --exit-code
fi
- |
Expand Down

0 comments on commit aca01ab

Please sign in to comment.