File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,9 @@ check_unignored_build_artifacts ()
74
74
}
75
75
}
76
76
77
+ # Clear MAKEFLAGS that may come from the outside world.
78
+ export MAKEFLAGS=
79
+
77
80
# Set 'exit on error' for all CI scripts to let the caller know that
78
81
# something went wrong.
79
82
# Set tracing executed commands, primarily setting environment variables
101
104
BREW_INSTALL_PACKAGES=" git-lfs gettext"
102
105
export GIT_PROVE_OPTS=" --timer --jobs 3 --state=failed,slow,save"
103
106
export GIT_TEST_OPTS=" --verbose-log -x --immediate"
104
- export MAKEFLAGS=" --jobs=2"
107
+ MAKEFLAGS=" $MAKEFLAGS --jobs=2"
105
108
elif test -n " $SYSTEM_COLLECTIONURI " || test -n " $SYSTEM_TASKDEFINITIONSURI "
106
109
then
107
110
CI_TYPE=azure-pipelines
126
129
BREW_INSTALL_PACKAGES=gcc@8
127
130
export GIT_PROVE_OPTS=" --timer --jobs 10 --state=failed,slow,save"
128
131
export GIT_TEST_OPTS=" --verbose-log -x --write-junit-xml"
129
- export MAKEFLAGS=" --jobs=10"
132
+ MAKEFLAGS=" $MAKEFLAGS --jobs=10"
130
133
test windows_nt ! = " $CI_OS_NAME " ||
131
134
GIT_TEST_OPTS=" --no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS "
132
135
else
@@ -185,4 +188,4 @@ GIT_TEST_GETTEXT_POISON)
185
188
;;
186
189
esac
187
190
188
- export MAKEFLAGS=" CC=${CC:- cc} "
191
+ MAKEFLAGS=" $MAKEFLAGS CC=${CC:- cc} "
You can’t perform that action at this time.
0 commit comments