-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (25 loc) · 794 Bytes
/
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
CHANNEL ?= latest
IMAGE_NAME ?= codeclimate/codeclimate-luacheck:$(CHANNEL)
build:
docker build . -t $(IMAGE_NAME)
test:
codeclimate analyze -e luacheck:stable --dev
bash: USER = 9000
bash:
docker run -it --user $(USER) --rm --volume $(PWD):/code:ro $(IMAGE_NAME) sh
local: export LUA_PATH = lib/?.lua
local: export CONFIG_FILE = config.json
local:
@bin/engine-lua-files
codeclimate: export CODECLIMATE_DEBUG = 1
codeclimate:
codeclimate analyze --dev
INTEGRATIONS := $(wildcard integration/*/.)
prepare:
@git submodule update --init --recursive
integration: prepare $(INTEGRATIONS)
$(INTEGRATIONS):
@touch [email protected]
$(SHELL) -c "cd $@ && time codeclimate analyze -e luacheck:stable --dev"
@echo
.PHONY: test local codeclimate bash prepare integration $(INTEGRATIONS)