-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
194 lines (159 loc) · 7.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#
# MIT License
#
# (C) Copyright 2019-2023 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
#############################################################################
# Variables
#############################################################################
ifeq ($(NAME),)
export NAME := $(shell basename $(shell pwd))
endif
ifeq ($(ARCH),)
export ARCH := x86_64
endif
ifeq ($(PYTHON_VERSION),)
export PYTHON_VERSION := 3.10
endif
export PYTHON_BIN := python$(PYTHON_VERSION)
ifeq ($(VERSION),)
export VERSION := $(shell python3 -m setuptools_scm 2>/dev/null | tr -s '-' '~' | sed 's/^v//')
endif
ifeq ($(VERSION),)
$(warning VERSION not set! Verify setuptools_scm[toml] is installed and try again.)
endif
#############################################################################
# Post Release handling
# "post" releases are useful for when non-code changes are made after
# a release was created:
# - When a README is updated, or CHANGE_LOG after a release was made
# - When build changes occur for distributing the application to another
# platform but the code has zero changes
#############################################################################
# NOTE: 1.0.0 and 1.0.0.post0 mean the same thing, so to keep things simple if a post0 stable tag is detected it
# will be truncated.
export VERSION := $(shell echo $(VERSION) | sed -E 's/\.post0$$.*//')
ifneq (,$(findstring post, $(VERSION)))
export RELEASE := $(shell echo $(VERSION) | sed -En 's/.*post([1-9]+)$$/\1/p')
# The RPM version starts at 1, whereas the Python post version starts at 0 (e.g. RPM 1.0.0-1 == Py 1.0.0.post0).
# Add 1 to translate the Python post version to RPM.
# ifeq ($(RELEASE),)
# export RELEASE=1
# else
export RELEASE := $(shell expr $(RELEASE) + '1')
# endif
# If the version is A.B.C.postN (with no other suffix), then bump the RELEASE number in the RPM and trim the suffix on the VERSION.
# Otherwise if there is a suffix after postN, it should be preserved. When a suffix exists after postN, that means a
# development branch is being used and the version should be preserved to indicate that context. When there is NO suffix after
# postN, that means this is a re-release (a repackaging) of an already published version.
# e.g.
# 1.7.1.post1 translates to RPM speak as 1.7.1-2 (the post release preserves the same version but indicates the re-packaging).
# 1.7.1.post2.dev0 translates to RPM speak as 1.7.1.post2.dev0-1 (the entire version remains untouched)
# See
export VERSION := $(shell echo $(VERSION) | sed -E 's/\.post[1-9]+$$//')
else
# Always set the RELEASE to 1 to indicate this build is the first release to be published for the version.
export RELEASE=1
endif
# After the VERSION has been normalized, make the image version.
# Image versions should never have the Python post version included if they're stable, it's confusing to image users.
# Image users simply pull the image and fetch the new layers, whereas RPM users have to pragmatically know when an RPM
# is newer (e.g. YUM/Zypper/apt needs a way to convey the repackaging).
# - Undo the RPM tilde, sanitize the version; image tags do not like tildes and are okay with dashes, unlike RPMs
# - Replace any '+' with '_' because image tags don't like the '+' character
ifeq ($(IMAGE_VERSION),)
export IMAGE_VERSION := $(shell echo $(VERSION) | tr -s '~' '-' | tr -s '+' '_' | sed 's/^v//')
endif
#############################################################################
# General targets
#############################################################################
.PHONY: \
all \
clean \
help \
prepare \
rpm \
rpm_build \
rpm_build_source \
rpm_package_source \
synk
all : prepare rpm
help:
@echo 'Usage: make <OPTIONS> ... <TARGETS>'
@echo ''
@echo 'Available targets are:'
@echo ''
@echo ' help Show this help screen.'
@echo ' clean Remove build files.'
@echo
@echo ' image Build and publish the Swagger testing image.'
@echo ' rpm Build a YUM/SUSE RPM.'
@echo ' all Build all production artifacts.'
@echo
@echo ' synk Runs a Snyk scan.'
@echo
@echo ' prepare Prepare for making an RPM.'
@echo ' rpm_build Builds the RPM.'
@echo ' rpm_build_source Builds the SRPM.'
@echo ' rpm_package_source Creates the RPM source tarball.'
@echo
@echo ' image_login Logs into the Docker registry for pulling and publishing images.'
@echo ' image_build Builds the Swagger testing image.'
@echo ' image_publish Builds and publishes the testing image.'
@echo ''
clean:
rm -rf build dist
#############################################################################
# RPM targets
#############################################################################
SPEC_FILE := ${NAME}.spec
SOURCE_NAME := ${NAME}-${VERSION}
BUILD_DIR ?= $(PWD)/dist/rpmbuild
SOURCE_PATH := ${BUILD_DIR}/SOURCES/${SOURCE_NAME}.tar.bz2
rpm: rpm_package_source rpm_build_source rpm_build
prepare:
@echo $(NAME)
rm -rf $(BUILD_DIR)
mkdir -p $(BUILD_DIR)/SPECS $(BUILD_DIR)/SOURCES
cp $(SPEC_FILE) $(BUILD_DIR)/SPECS/
# touch the archive before creating it to prevent 'tar: .: file changed as we read it' errors
rpm_package_source:
touch $(SOURCE_PATH)
tar --transform 'flags=r;s,^,/$(SOURCE_NAME)/,' --exclude .nox --exclude dist/rpmbuild --exclude ${SOURCE_NAME}.tar.bz2 -cvjf $(SOURCE_PATH) .
rpm_build_source:
rpmbuild -bs $(BUILD_DIR)/SPECS/$(SPEC_FILE) --target ${ARCH} --define "_topdir $(BUILD_DIR)"
rpm_build:
rpmbuild -ba $(BUILD_DIR)/SPECS/$(SPEC_FILE) --target ${ARCH} --define "_topdir $(BUILD_DIR)"
#############################################################################
# Run targets
#############################################################################
snyk:
$(MAKE) -s image | xargs --verbose -n 1 snyk container test
#############################################################################
# RPM targets
#############################################################################
image_login:
docker login artifactory.algol60.net
image_build:
docker build -t artifactory.algol60.net/csm-docker/stable/craycli/swagger2openapi:latest utils/
image_publish: image_build
docker push artifactory.algol60.net/csm-docker/stable/craycli/swagger2openapi:latest
image: image_publish