-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (29 loc) · 984 Bytes
/
Makefile
File metadata and controls
37 lines (29 loc) · 984 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
# This provides a convenient way to quickly run all the basic tests locally.
# When running in CI/CD (eg. Cloud Build) these steps should be separated out
# so they can run in parallel, and to log the output from each step independently.
.PHONY: default test
default:
.PHONY: filter-exports-test
test: filter-exports-test
filter-exports-test:
$(MAKE) -C image/resources/filter-exports test
.PHONY: knfsd-agent-test
test: knfsd-agent-test
knfsd-agent-test:
$(MAKE) -C image/resources/knfsd-agent test
.PHONY: knfsd-fsidd-test
test: knfsd-fsidd-test
knfsd-fsidd-test:
$(MAKE) -C image/resources/knfsd-fsidd test
.PHONY: knfsd-metrics-agent-test
test: knfsd-metrics-agent-test
knfsd-metrics-agent-test:
$(MAKE) -C image/resources/knfsd-metrics-agent test
.PHONY: netapp-exports-test
test: netapp-exports-test
netapp-exports-test:
$(MAKE) -C image/resources/netapp-exports test
.PHONY: mig-scaler-test
test: mig-scaler-test
mig-scaler-test:
$(MAKE) -C tools/mig-scaler test