@@ -89,16 +89,12 @@ REGISTRY?=gcr.io/kritis-project
89
89
# TODO(tstromberg): Determine if it is possible to combine these two variables.
90
90
TEST_REGISTRY? =gcr.io/$(GCP_PROJECT )
91
91
SERVICE_PACKAGE = $(REPOPATH ) /cmd/kritis/admission
92
- GCB_SIGNER_PACKAGE = $(REPOPATH ) /cmd/kritis/gcbsigner
93
92
SIGNER_PACKAGE = $(REPOPATH ) /cmd/kritis/signer
94
93
95
94
96
95
out/kritis-server : $(GO_FILES )
97
96
GOARCH=$(GOARCH ) GOOS=linux CGO_ENABLED=0 go build -ldflags " $( GO_LDFLAGS) " -o $@ $(SERVICE_PACKAGE )
98
97
99
- out/gcb-signer : $(GO_FILES )
100
- GOARCH=$(GOARCH ) GOOS=linux CGO_ENABLED=0 go build -ldflags " $( GO_LDFLAGS) " -o $@ $(GCB_SIGNER_PACKAGE )
101
-
102
98
out/signer : $(GO_FILES )
103
99
GOARCH=$(GOARCH ) GOOS=linux CGO_ENABLED=0 go build -ldflags " $( GO_LDFLAGS) " -o $@ $(SIGNER_PACKAGE )
104
100
@@ -182,13 +178,6 @@ integration-in-docker: build-push-image
182
178
-e GOOGLE_APPLICATION_CREDENTIALS=$(GOOGLE_APPLICATION_CREDENTIALS ) \
183
179
$(REGISTRY ) /kritis-integration:$(IMAGE_TAG )
184
180
185
- .PHONY : gcb-signer-image
186
- gcb-signer-image : out/gcb-signer-image
187
- docker build -t $(REGISTRY ) /kritis-gcb-signer:$(IMAGE_TAG ) -f deploy/kritis-gcb-signer/Dockerfile .
188
-
189
- .PHONY : gcb-signer-push-image
190
- gcb-signer-push-image : gcb-signer-image
191
- docker push $(REGISTRY ) /kritis-gcb-signer:$(IMAGE_TAG )
192
181
193
182
# Fully setup local integration testing: only needs to run just once
194
183
# TODO: move entire setup into bash script
0 commit comments