-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (21 loc) · 849 Bytes
/
Makefile
File metadata and controls
25 lines (21 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
TARGET_BRANCH?=develop
# TARGET_BRANCH=feature-branch make dep-update-oss
all: dep-update-oss build
dep-update-oss:
cd git-sensor && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd chart-sync && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd ci-runner && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd kubelink && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd kubewatch && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd lens && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
cd image-scanner && TARGET_BRANCH=$(TARGET_BRANCH) $(MAKE) dep-update-oss
build:
cd chart-sync && $(MAKE)
cd ci-runner && $(MAKE)
# cd devtctl && $(MAKE)
cd git-sensor && $(MAKE)
cd kubelink && $(MAKE)
cd kubewatch && $(MAKE)
cd lens && $(MAKE)
cd image-scanner && $(MAKE)
# cd common-lib && $(MAKE)