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.
2 parents 8e0186f + 06139c8 commit 0d48c59Copy full SHA for 0d48c59
etc/CodeCoverage.sh
@@ -59,6 +59,11 @@ _coverity() {
59
tar czvf openroad.tgz cov-int
60
commitSha="$(git rev-parse HEAD)"
61
62
+ if [ -n "${SKIP_COVERITY_UPLOAD+x}" ]; then
63
+ echo "SKIP_COVERITY_UPLOAD is set. Skipping Coverity upload."
64
+ exit 0
65
+ fi
66
+
67
# Step 1: Initialize a build. Fetch a cloud upload url.
68
curl -X POST \
69
-d version="version=${commitSha}" \
src/tst/include/tst/IntegratedFixture.h
@@ -36,7 +36,7 @@ class IntegratedFixture : public tst::Fixture
36
37
protected:
38
odb::dbLib* lib_;
39
- odb::dbBlock* block_;
+ odb::dbBlock* block_{nullptr};
40
sta::dbNetwork* db_network_;
41
42
stt::SteinerTreeBuilder stt_;
0 commit comments