-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile-tester
68 lines (56 loc) · 1.73 KB
/
Makefile-tester
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
# Makefile for SAPHanaSR package
# Author: Ilya Manyugin
# License: GPL v 2.0+
# make tarball
FILE_LIST = LICENSE \
README.md \
crm_cfg \
man-tester \
man-tester-client \
test \
tools \
PKG = SAPHanaSR-tester
SPECFILE = ${PKG}.spec
VERSION = $(strip $(patsubst Version:,,$(shell grep '^Version:' $(SPECFILE))))
# OBS local project path: set it as a command line argument or as an ENV variable
OBSPROJ ?= "placeholder"
# OBS target platform
OBSTARG ?= "SLE_12_SP2"
tarball:
@echo -e "\e[33mMaking ${PKG}-${VERSION}.tgz\e[0m"
tar zcf ${PKG}-${VERSION}.tgz ${TAR_EXTRAS} ${FILE_LIST}
@echo -e "\e[32mDone\e[0m"
.ONESHELL:
copy: tarball
@if [ $(OBSPROJ) = "placeholder" ]; then
echo -e "\e[31mProject directory is missing. Set it via 'OBSPROJ=/path/to/project'\e[0m";
exit 1;
fi
@echo -e "\e[33mCopying the SPEC file, CHANGES file and the tarball to ${OBSPROJ}\e[0m"
@cp ${PKG}.changes ${OBSPROJ}
@cp ${PKG}.spec ${OBSPROJ}
@cp ${PKG}-${VERSION}.tgz ${OBSPROJ}
@echo -e "\e[32mDone\e[0m"
.ONESHELL:
build: copy
@echo -e "\e[33mInitiating the build\e[0m"
@cd ${OBSPROJ}
osc -A https://api.suse.de build ${OBSTARG}
@echo -e "\e[32mDone\e[0m"
.ONESHELL:
commit: copy
@echo -e "\e[33mCommiting the code\e[0m"
@cd ${OBSPROJ}
osc -A https://api.suse.de addremove
osc -A https://api.suse.de commit
@echo -e "\e[32mDone\e[0m"
.phony: tarball
.PHONY: checkstyle
checkstyle:
ifneq ($(CHECKSTYLE),0)
find . -type f -exec awk ' /^#!.*bash/{print FILENAME} {nextfile}' {} + | xargs shellcheck -s bash || :
find . -type f -exec awk ' /^#!.*perl/{print FILENAME} {nextfile}' {} + | grep -v .git | xargs perlcritic --gentle || :
find . -name '*.py' | xargs flake8 --ignore=E501 || :
endif
PHONY: test
test: checkstyle