-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (35 loc) · 773 Bytes
/
Makefile
File metadata and controls
44 lines (35 loc) · 773 Bytes
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
.PHONY: build
build:
yarn build
.PHONY: clean
clean:
yarn clean
.PHONY: publish
publish:
yarn publish
.PHONY: test
test:
yarn test
.PHONY: verify-configuration
verify-configuration: build
yarn run \
codeclimate-connector verify-configuration \
circleci \
connector-config.json
.PHONY: discover-streams
discover-streams: build
yarn run \
codeclimate-connector discover-streams \
circleci \
connector-config.json
.PHONY: sync-stream
# GNU `date` & BSD (MacOS) `date` are not compatible enough to easily do a
# relative date here. Not going to fuss too much and just pick a static date for
# now.
sync-stream: build
yarn run \
codeclimate-connector sync-stream \
circleci \
connector-config.json \
'$(shell cat stream.json)' \
2020-01-01