Skip to content

Commit

Permalink
Merge bitcoin-core/secp256k1#1146: ci: prevent "-v/--version: not fou…
Browse files Browse the repository at this point in the history
…nd" irrelevant error

49ae843 ci: mostly prevent "-v/--version: not found" irrelevant error (Jonas Nick)

Pull request description:

ACKs for top commit:
  real-or-random:
    ACK 49ae843

Tree-SHA512: 2e048b037826dff372e26103f198e0d490494e7909d17d8632b51f6d9e0629b51bcd0b55b65b2c21d63d522394ccfed481ce126cea165c087df670556bc8ccf6
  • Loading branch information
jonasnick committed Nov 8, 2022
2 parents e13fae4 + 49ae843 commit c2ee917
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions ci/cirrus.sh
Expand Up @@ -16,9 +16,16 @@ esac

env >> test_env.log

$CC -v || true
valgrind --version || true
$WRAPPER_CMD --version || true
if [ -n "$CC" ]; then
# The MSVC compiler "cl" doesn't understand "-v"
$CC -v || true
fi
if [ "$WITH_VALGRIND" = "yes" ]; then
valgrind --version
fi
if [ -n "$WRAPPER_CMD" ]; then
$WRAPPER_CMD --version
fi

./autogen.sh

Expand Down

0 comments on commit c2ee917

Please sign in to comment.