Remvoed the use of clang-format that does not actually block PRs or surface anything to developers #8188 (#8196)
* Remvoed the use of clang-format that does not actually block PRs or surface anything to developers * Reopen PR
James Mills committed
Mar 6, 2020 at 12:25 UTC
fc8ba79a51a980604b787dc479196ff289252902
2 files changed
-7
.travis.yml
-4
@@ -103,10 +103,6 @@ jobs:
103
name: Run shellchecking on BASH
104
script: shellcheck --format=gcc $(find . -name '*.sh.in' -not -iwholename '*.git*')
105
106
- # Check if any of the C code deviates from our coding style
107
- - name: Check coding style
108
- script: .travis/clangformat.sh
109
-
106
# This falls under same stage defined earlier
107
- name: Run checksum checks on kickstart files
108
script: ./tests/installer/checksums.sh
.travis/clangformat.sh
deleted
-3
@@ -1,3 +0,0 @@
1
-#!/usr/bin/env bash
2
-
3
-find . -type f -name '*.[ch]' | while read filename; do echo -ne "$filename: "; diff <(clang-format -style=file $filename) $filename | wc -l; done