Browse Source

Update scripts

George Barnett 1 year ago
parent
commit
bd58bb093f
3 changed files with 0 additions and 12 deletions
  1. 0 0
      dev/format.sh
  2. 0 7
      dev/license-check.sh
  3. 0 5
      dev/sanity.sh

+ 0 - 0
scripts/format.sh → dev/format.sh


+ 0 - 7
scripts/license-check.sh → dev/license-check.sh

@@ -105,13 +105,6 @@ check_copyright_headers() {
   done < <(find . -name '*.swift' \
     ! -name '*.pb.swift' \
     ! -name '*.grpc.swift' \
-    ! -name 'LinuxMain.swift' \
-    ! -name 'XCTestManifests.swift' \
-    ! -path './Sources/GRPCCore/Documentation.docc/*' \
-    ! -path './FuzzTesting/.build/*' \
-    ! -path './Performance/QPSBenchmark/.build/*' \
-    ! -path './Performance/Benchmarks/.build/*' \
-    ! -path './scripts/.swift-format-source/*' \
     ! -path './.build/*')
 }
 

+ 0 - 5
scripts/sanity.sh → dev/sanity.sh

@@ -45,12 +45,7 @@ function check_formatting() {
   run_logged "Checking formatting" "$here/format.sh -l"
 }
 
-function check_generated_code_is_up_to_date() {
-  run_logged "Checking generated code is up-to-date" "$here/check-generated-code.sh"
-}
-
 errors=0
 check_license_headers
 check_formatting
-check_generated_code_is_up_to_date
 exit $errors