This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
60 lines (39 loc) · 1.57 KB
/
Makefile
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
all-rpm: clean go web pure1-unplugged-image lorax-image helm-chart install-bundle rpm
all: all-rpm iso
all-minikube: clean go web pure1-unplugged-image-minikube lorax-image helm-chart
clean:
rm -rf ./build
go: pull-go-image go-all
pull-go-image:
./scripts/pull_gobuilder.sh
# Match any target that starts with 'go-' and shim them into the docker container where we run
# the target there without the 'go-' prefix. Example: make go-auth-server will run (in docker)
# something like make -f ./Makefile-golang auth-server
go-%:
./scripts/build/build_golang_in_docker.sh $*
web: pull-web-image web-setup lint-web-content test-web-content web-content
pull-web-image:
./scripts/pull_angularbuilder.sh
web-setup:
./scripts/setup_web_content_in_docker.sh
lint-web-content:
./scripts/build/lint_web_content_in_docker.sh
web-content:
./scripts/build/build_web_content_in_docker.sh
test-web-content:
./scripts/build/test_web_content_in_docker.sh
pure1-unplugged-image:
./scripts/build/build_pure1_unplugged_image.sh
pure1-unplugged-image-minikube:
./scripts/build/build_pure1_unplugged_image.sh minikube
lorax-image:
./scripts/build/build_lorax_image.sh
helm-chart:
./scripts/build/build_helm_chart_in_docker.sh
install-bundle:
./scripts/build/build_install_bundle_in_docker.sh
rpm:
./scripts/build/build_pure1_unplugged_rpm_in_docker.sh
iso:
./scripts/build/build_installer_iso_in_docker.sh
.PHONY: all-rpm all-minikube clean go pull-go-image web pull-web-image web-setup pure1-unplugged-image pure1-unplugged-image-minikube lorax-image helm-chart install-bundle rpm install-iso