-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (35 loc) · 777 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Execute the "targets" in this file with `make <target>` e.g. `make help`.
#
# You can also run multiple in sequence, e.g. `make clean lint test serve-coverage-report`
#
# See run.sh for more in-depth comments on what each target does.
build:
bash run.sh build
clean:
bash run.sh clean
help:
bash run.sh help
install:
bash run.sh install
lint:
bash run.sh lint
lint-ci:
bash run.sh lint:ci
publish-prod:
bash run.sh publish:prod
publish-test:
bash run.sh publish:test
release-prod:
bash run.sh release:prod
release-test:
bash run.sh release:test
serve-coverage-report:
bash run.sh serve-coverage-report
test-ci:
bash run.sh test:ci
test-quick:
bash run.sh test:quick
test:
bash run.sh run-tests
test-wheel-locally:
bash run.sh test:wheel-locally