mirror of https://git.rancher.io/charts
27 lines
329 B
Makefile
27 lines
329 B
Makefile
ci: bootstrap
|
|
./scripts/ci
|
|
|
|
prepare: bootstrap
|
|
./scripts/prepare
|
|
|
|
bootstrap:
|
|
./scripts/bootstrap
|
|
|
|
charts: bootstrap prepare
|
|
./scripts/generate-charts
|
|
|
|
patch: bootstrap
|
|
./scripts/generate-patch
|
|
|
|
validate: bootstrap
|
|
./scripts/validate
|
|
|
|
mirror: bootstrap
|
|
./scripts/image-mirror
|
|
|
|
clean:
|
|
./scripts/clean
|
|
|
|
.DEFAULT_GOAL := ci
|
|
|