From 4eb92a02abe28f471c7f37c908d258003b0b7f0d Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 4 May 2021 10:28:40 -0700 Subject: [PATCH] build: remove bazel files --- .bazel/buildozer_commands.txt | 3 - .bazel/code-generator/boilerplate.go.txt | 1 - .bazel/nogo-config.json | 7 -- .bazel/print-workspace-status.sh | 20 ------ .bazelignore | 4 -- .bazelrc | 7 -- Makefile | 4 +- Makefile.bazel | 66 ------------------- .bazel/golangcilint.yaml => golangcilint.yaml | 0 9 files changed, 2 insertions(+), 110 deletions(-) delete mode 100644 .bazel/buildozer_commands.txt delete mode 100644 .bazel/code-generator/boilerplate.go.txt delete mode 100644 .bazel/nogo-config.json delete mode 100755 .bazel/print-workspace-status.sh delete mode 100644 .bazelignore delete mode 100644 .bazelrc delete mode 100644 Makefile.bazel rename .bazel/golangcilint.yaml => golangcilint.yaml (100%) diff --git a/.bazel/buildozer_commands.txt b/.bazel/buildozer_commands.txt deleted file mode 100644 index 7ef85218..00000000 --- a/.bazel/buildozer_commands.txt +++ /dev/null @@ -1,3 +0,0 @@ -set race "on"|//...:%go_test -fix unusedLoads|//...:__pkg__ -set timeout short|//...:%go_test diff --git a/.bazel/code-generator/boilerplate.go.txt b/.bazel/code-generator/boilerplate.go.txt deleted file mode 100644 index 309c36fd..00000000 --- a/.bazel/code-generator/boilerplate.go.txt +++ /dev/null @@ -1 +0,0 @@ -// Generated file, do not modify manually! diff --git a/.bazel/nogo-config.json b/.bazel/nogo-config.json deleted file mode 100644 index b8ad15c2..00000000 --- a/.bazel/nogo-config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "printf": { - "exclude_files": { - "/vendor/": "no need to vet third party code" - } - } -} \ No newline at end of file diff --git a/.bazel/print-workspace-status.sh b/.bazel/print-workspace-status.sh deleted file mode 100755 index 1e8f99af..00000000 --- a/.bazel/print-workspace-status.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -# This command is used by bazel as the workspace_status_command -# to implement build stamping with git information. - -set -o errexit -set -o nounset -set -o pipefail - -GIT_COMMIT=$(git rev-parse --short HEAD) -GIT_TAG=$(git describe --abbrev=0 --tags 2>/dev/null || echo "0.0.0") - -# Prefix with STABLE_ so that these values are saved to stable-status.txt -# instead of volatile-status.txt. -# Stamped rules will be retriggered by changes to stable-status.txt, but not by -# changes to volatile-status.txt. -cat <