FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
dockerize-php-code-analysis/bin/code.mk at main · justcoded/dockerize-php-code-analysis · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
justcoded
/
dockerize-php-code-analysis
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
dockerize-php-code-analysis
/
bin
/
code.mk
Copy path
More file actions
More file actions
Latest commit
History
History
History
90 lines (76 loc) · 2.89 KB
Breadcrumbs
dockerize-php-code-analysis
/
bin
/
code.mk
Copy path
File metadata and controls
90 lines (76 loc) · 2.89 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
.PHONY
: code.check code.check.dirty code.fix code.fix.dirty code.check.diff code.fix.diff
version
?= 0.5.6
branch
?= develop
ECS_IMAGE
:= ghcr.io/justcoded/php-code-analysis:${version}
#
ECS_IMAGE := docker.io/library/dockerize-php-code-analysis-php-code-analysis-tool
CODE_MK_DOWNLOAD_URL
=https://raw.githubusercontent.com/justcoded/dockerize-php-code-analysis/main/bin/code.mk
#
Define default path if one is not passed
ifndef
path
ifneq ("$(wildcard src)","")
path = src
else
path = app config database tests
endif
endif
ifneq
("
$(
wildcard
ecs.php)
","")
ECS_DR
:= docker run -it --rm -v "$$PWD":/codebase -v "$$PWD/ecs.php":/app/ecs.php ${ECS_IMAGE} bash
else
ECS_DR
:= docker run -it --rm -v "$$PWD":/codebase ${ECS_IMAGE} bash
endif
GIT_DIR
=
$(
shell
git rev-parse --show-toplevel)
GIT_DIFF_DIRTY
=
$(
shell
git diff --name-only | grep '.php$$')
GIT_DIFF_RANGE
=origin/${branch}..HEAD
GIT_DIFF_BRANCH
=
$(
shell
git diff --name-only --diff-filter=ACMRTUXB "${GIT_DIFF_RANGE}" | grep '.php$$')
#
#
#
@command code.check Check code in specified path. Usage: `make code.check path=src/app\ src/tests` (src by default)
#
#
code.check
:
${ECS_DR}
\
-c
"
ecs check --config /app/ecs.php
${path}
"
#
#
#
@command code.fix Fix code in specified path. Usage: `make code.fix path=src/app\ src/tests` (src by default)
#
#
code.fix
:
${ECS_DR}
\
-c
"
ecs check --fix --config /app/ecs.php
${path}
"
#
#
#
@command code.check.dirty Check only new code.
#
#
code.check.dirty
:
@cd
${GIT_DIR}
&&
${ECS_DR}
\
-c
"
ecs check --config /app/ecs.php
${GIT_DIFF_DIRTY}
"
#
#
#
@command code.fix.dirty Fix only new code.
#
#
code.fix.dirty
:
@cd
${GIT_DIR}
&&
${ECS_DR}
\
-c
"
ecs check --fix --config /app/ecs.php
${GIT_DIFF_DIRTY}
"
#
#
#
@command code.check.diff Check only diff files from target branch. Usage: `make code.check.diff branch=main` (develop by default)
#
#
code.check.diff
:
cd
${GIT_DIR}
&&
${ECS_DR}
\
-c
"
ecs check --config /app/ecs.php
${GIT_DIFF_BRANCH}
"
#
#
#
@command code.fix.diff Fix only diff files from target branch. Usage: `make code.fix.diff branch=main` (develop by default)
#
#
code.fix.diff
:
cd
${GIT_DIR}
&&
${ECS_DR}
\
-c
"
ecs check --fix --config /app/ecs.php
${GIT_DIFF_BRANCH}
"
#
#
#
@command code.config.publish Publish ecs.php configuration file to override default one.
#
#
code.config.publish
:
@echo
'
...........Publishing config
'
@
$(
eval
CONTAINER_ID =
$(
shell
docker create ${ECS_IMAGE})
)
@docker cp
${CONTAINER_ID}
:/app/ecs.php ecs.php
@docker rm -v
${CONTAINER_ID}
@echo
'
...........Published "ecs.php"
'
#
#
#
@command code.self-update Download latest code.mk file.
#
#
code.self-update
:
@echo
'
...........Downloading new code.mk file
'
@
$(
eval
CODE_MK_PATH =
$(
shell
find ./ -name code.mk)
)
$(
shell
curl -o ${CODE_MK_PATH} ${CODE_MK_DOWNLOAD_URL} -k -H 'Cache-Control: no-cache, no-store' -H 'Pragma: no-cache')
@echo
'
...........Downloaded. Path: ${CODE_MK_PATH}
'
Back
|
FazBrowse Home
|
New Git URL