We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec756c commit 5d98f8aCopy full SHA for 5d98f8a
1 file changed
tools/make/lib/coverage-service/codecov.mk
@@ -1,6 +1,9 @@
1
2
# VARIABLES #
3
4
+# Define the command for `npm`:
5
+NPM ?= npm
6
+
7
# Define the command for `cat`:
8
CAT ?= cat
9
CAT_FLAGS ?=
@@ -9,7 +12,11 @@ CAT_FLAGS ?=
12
CODECOV ?= $(BIN_DIR)/codecov
10
13
11
14
# Define the command-line options to be used when reporting coverage statistics:
-CODECOV_FLAGS ?=
15
+CODECOV_FLAGS ?= \
16
+ -F $(CI_SERVICE) \
17
+ -F $(KERNEL) \ # TODO: lower case
18
+ -F $(NODE_ENV) \
19
+ -F $(NODE_VERSION) # TODO: compute
20
21
22
# TARGETS #
0 commit comments