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

Get rid of local dependency cache #380

Merged
merged 1 commit into from
Jan 12, 2025
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.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9-1734626445@sha256:ead3518

# Copy the Go Modules manifests
COPY go.mod go.mod
COPY vendor/ vendor/
COPY go.sum go.sum
COPY pkg/ pkg/
COPY cmd/ cmd/

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.otp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9-1734626445@sha256:ead3518

# Copy the Go Modules manifests
COPY go.mod go.mod
COPY vendor/ vendor/
COPY go.sum go.sum
COPY pkg/ pkg/
COPY cmd/ cmd/

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.taskgen
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9-1734626445@sha256:ead3518

# Copy the Go Modules manifests
COPY go.mod go.mod
COPY vendor/ vendor/
COPY go.sum go.sum
COPY pkg/ pkg/
COPY cmd/ cmd/

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ test: fmt vet ## Run tests.
.PHONY: build
build: fmt vet clean manifests
go build -o out/multi-platform-controller cmd/controller/main.go
env GOOS=linux GOARCH=amd64 go build -mod=vendor -o out/multi-platform-controller ./cmd/controller
env GOOS=linux GOARCH=amd64 go build -o out/multi-platform-controller ./cmd/controller

.PHONY: build-otp
build-otp:
env GOOS=linux GOARCH=amd64 go build -mod=vendor -o out/otp-server ./cmd/otp
env GOOS=linux GOARCH=amd64 go build -o out/otp-server ./cmd/otp

.PHONY: clean
clean:
Expand Down
17 changes: 0 additions & 17 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/.gitignore

This file was deleted.

20 changes: 0 additions & 20 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml

This file was deleted.

24 changes: 0 additions & 24 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/CONTRIBUTING.md

This file was deleted.

201 changes: 0 additions & 201 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/LICENSE

This file was deleted.

61 changes: 0 additions & 61 deletions vendor/contrib.go.opencensus.io/exporter/ocagent/README.md

This file was deleted.

Loading
Loading