
Updating portieris for auto chart version incrementation. Restructuring debian packaging, and separating portieris-certs into a new package. Test Plan: PASS Validate each chart builds from a clean build env PASS Validate application tarball is created correctly PASS Validate chart version increments by 1 for each change PASS Validate application cycle (upload/apply/remove/delete) for AIO-SX Story: 2010929 Task: 50225 Change-Id: I8e6ce77b779f6c7ef4d4bad60f77e13cba53d867 Signed-off-by: Tae Park <tae.park@windriver.com>
42 lines
849 B
Makefile
42 lines
849 B
Makefile
#
|
|
# Copyright 2017 The Openstack-Helm Authors.
|
|
#
|
|
# Copyright (c) 2019, 2024 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# It's necessary to set this because some environments don't link sh -> bash.
|
|
SHELL := /bin/bash
|
|
TASK := build
|
|
|
|
EXCLUDES := doc tests tools logs tmp
|
|
CHARTS := $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.)))
|
|
|
|
.PHONY: $(EXCLUDES) $(CHARTS)
|
|
|
|
all: $(CHARTS)
|
|
|
|
$(CHARTS):
|
|
@if [ -d $@ ]; then \
|
|
echo; \
|
|
echo "===== Processing [$@] chart ====="; \
|
|
make $(TASK)-$@; \
|
|
fi
|
|
|
|
init-%:
|
|
if [ -f $*/Makefile ]; then make -C $*; fi
|
|
|
|
lint-%: init-%
|
|
if [ -d $* ]; then helm lint $*; fi
|
|
|
|
build-%:
|
|
if [ -d $* ]; then helm package --version $(CHART_VERSION) $*; fi
|
|
|
|
clean:
|
|
@echo "Clean all build artifacts"
|
|
rm -f */templates/_partials.tpl */templates/_globals.tpl
|
|
rm -rf */charts */tmpcharts
|
|
|
|
%:
|
|
@:
|