Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove vendor directory #115

Merged
merged 2 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .ci/build
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ GIT_SHA=$(git rev-parse --short HEAD || echo "GitNotFound")

# If the LOCAL_BUILD environment variable is set, we simply run `go build`.
CGO_ENABLED=0 GO111MODULE=on go build \
-mod vendor \
-v \
-o "${BINARY_PATH}/dependency-watchdog" \
dwd.go
22 changes: 19 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
# Ignore build and test binaries.
bin/
testbin/

# Exclude folders relevant for build
!.git
!.dockerignore
!charts/
!cmd/
!extensions/
!hack/
!imagevector/
!pkg/
!plugin/
!test/
!third_party/
!vendor/
!.golangci.yaml.in
!go.mod
!go.sum
!Makefile
!VERSION
Loading