зеркало из https://github.com/docker/packaging.git
53 строки
1.4 KiB
Makefile
53 строки
1.4 KiB
Makefile
# Copyright 2022 Docker Packaging authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
include common/vars.mk
|
|
|
|
pkgs := $(notdir $(shell find "pkg/" -maxdepth 1 -type d))
|
|
|
|
.PHONY: apk deb rpm static
|
|
apk deb rpm static:
|
|
$(MAKE) $(foreach pkg,$(pkgs),$@-$(pkg))
|
|
|
|
.PHONY: apk-%
|
|
apk-%:
|
|
$(MAKE) -C pkg/$* pkg-apk
|
|
|
|
.PHONY: deb-%
|
|
deb-%:
|
|
$(MAKE) -C pkg/$* pkg-deb
|
|
|
|
.PHONY: rpm-%
|
|
rpm-%:
|
|
$(MAKE) -C pkg/$* pkg-rpm
|
|
|
|
.PHONY: static-%
|
|
static-%:
|
|
$(MAKE) -C pkg/$* pkg-static
|
|
|
|
include common/packages.mk
|
|
|
|
GHA_MATRIX ?= minimal
|
|
ifeq ($(GHA_MATRIX),minimal)
|
|
GHA_RELEASES := debian10 debian11 debian12 ubuntu2004 ubuntu2204 ubuntu2310 centos7 centos9 oraclelinux7 fedora39 static
|
|
else ifeq ($(GHA_MATRIX),all)
|
|
GHA_RELEASES := $(PKG_DEB_RELEASES) $(PKG_RPM_RELEASES) static
|
|
else
|
|
GHA_RELEASES := $(GHA_MATRIX)
|
|
endif
|
|
|
|
.PHONY: gha-matrix
|
|
gha-matrix:
|
|
@echo "$(GHA_RELEASES)" | jq -cR 'split(" ")'
|