-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (35 loc) · 787 Bytes
/
Makefile
File metadata and controls
46 lines (35 loc) · 787 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
42
43
44
45
46
all:
clean:
rm -rf node_modules
rm -rf out
rm -rf coverage
rm -rf .nyc_output
rm -rf dist
install:
npm install
test:
rm -rf coverage
rm -rf .nyc_output
npm test
build:
rm -rf out
rm -rf dist
npm run build
npm run build-linux
build_macos_x64:
npm run build
npm run build-macos-x64
build_macos_arm64:
npm run build
npm run build-macos-arm64
build_aarch64:
npm run build
npm run build-aarch64
build_alpine:
npm run build
npm run build-alpine
.PHONY: clean install test build
.PHONY: run-standards-comparison
run-standards-comparison:
docker pull codecov/autotest:standards-latest > /dev/null 2>&1
docker run --network autotest_codecov -e HOST_URL=http://web.local:5000 -e IS_UPLOADER=true -it -v "$(PWD)/out:/usr/app/out" codecov/autotest:standards-latest