-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
46 lines (32 loc) · 925 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
.PHONY: test
test: install
bash -exc "./build/test.sh tests; ./build/test.sh leetcode; ./build/test.sh errorTest"
.PHONY: test-installed
test-installed:
bash -exc "node --version; ./build/test.sh tests pyx; ./build/test.sh leetcode pyx; ./build/test.sh errorTest pyx"
.PHONY: test-in-docker-ubuntu
test-in-docker-ubuntu:
@echo "*** test in docker - ubuntu ***"
./build/test-in-docker-ubuntu.sh
.PHONY: test-in-docker-fedora
test-in-docker-fedora:
@echo "*** test in docker - fedora ***"
./build/test-in-docker-fedora.sh
.PHONY: test-in-docker
test-in-docker: test-in-docker-ubuntu test-in-docker-fedora
@echo "*** test in docker ***"
.PHONY: publish-prs
publish-prs:
./build/publish-prs.sh
.PHONY: publish-pyx
publish-pyx:
./pyx ./build/publish-pyx.p
.PHONY: docs2
docs2:
./build/build-docs2.sh
.PHONY: docs
docs:
./build/build-docs.sh
.PHONY: install
install:
./build/install.sh