We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7edc96 commit 98fb6ebCopy full SHA for 98fb6eb
.evergreen/install-dependencies.sh
@@ -33,5 +33,16 @@ cargo install cargo2junit
33
source ./.evergreen/env.sh
34
35
# Install tool for merging different junit reports into a single one
36
-npm install -g junit-report-merger
+set +o errexit
37
+set -o pipefail
38
+
39
+npm install -g junit-report-merger --cache $(mktemp -d) 2>&1 | tee npm-install-output
40
+RESULT=$?
41
+MATCH=$(grep -o '/\S*-debug.log' npm-install-output)
42
+if [[ $MATCH != "" ]]; then
43
+ echo ===== BEGIN NPM LOG =====
44
+ cat $MATCH
45
+ echo ===== END NPM LOG =====
46
+fi
47
48
+exit $RESULT
0 commit comments