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

Improve build and release system #5991

Merged
merged 3 commits into from
Dec 6, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Review comments & Add docker-images Makefile
Signed-off-by: Jakub Scholz <www@scholzj.com>
  • Loading branch information
scholzj committed Dec 6, 2021
commit b9f2ee04ec8ef0b9148b83c158390eb26255a616
1 change: 1 addition & 0 deletions .azure/cve-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ parameters:
- name: sourcePipelineId
displayName: Pipeline ID of the source build
type: number
# 16 is the pipeline ID of the Operators build pipeline which provides the artifacts in Azure
default: 16
values:
- 16
Expand Down
1 change: 1 addition & 0 deletions .azure/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ parameters:
- name: sourcePipelineId
displayName: Pipeline ID of the source build
type: number
# 16 is the pipeline ID of the Operators build pipeline which provides the artifacts in Azure
default: 16
values:
- 16
Expand Down
12 changes: 12 additions & 0 deletions docker-images/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
TOPDIR=$(dir $(lastword $(MAKEFILE_LIST)))

DOCKERDIRS=base operator kafka-based jmxtrans maven-builder kaniko-executor
DOCKER_TARGETS=docker_build docker_push docker_tag docker_load docker_save docker_amend_manifest docker_push_manifest docker_delete_manifest

all: $(DOCKERDIRS)
$(DOCKER_TARGETS): $(DOCKERDIRS)

$(DOCKERDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)

.PHONY: all $(DOCKERDIRS) $(DOCKER_TARGETS)