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 ff25665 commit 8eb045aCopy full SHA for 8eb045a
scripts/ci_build_and_test_in_container.sh
@@ -103,7 +103,17 @@ fi
103
104
if [[ "$*" == *--code-coverage* ]]; then
105
or_die make -j ${NPROC} VERBOSE=1
106
- or_die make hpcReact_coverage
+
107
+ # create a wrapper that forces the flag
108
+ install -d /usr/local/bin
109
+ cat >/usr/local/bin/geninfo <<'EOF'
110
+ #!/usr/bin/env bash
111
+ exec /usr/bin/geninfo --ignore-errors mismatch "$@"
112
+ EOF
113
+ chmod +x /usr/local/bin/geninfo
114
115
116
+ or_die make hpcReact_coverage VERBOSE=1
117
cp -r ${HPCREACT_BUILD_DIR}/hpcReact_coverage.info.cleaned /tmp/hpcReact/hpcReact_coverage.info.cleaned
118
fi
119
0 commit comments