mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
Merge bitcoin/bitcoin#27674: ci: Fix "Number of CPUs" output
5d49d98731
ci: Fix "Number of CPUs" output (Hennadii Stepanov) Pull request description: This PR is a follow-up to https://github.com/bitcoin/bitcoin/pull/27616: - on [master](https://api.cirrus-ci.com/v1/task/5809898840129536/logs/ci.log): ``` Number of CPUs \(nproc\): $(nproc) ``` - this [PR](https://api.cirrus-ci.com/v1/task/6495994095861760/logs/ci.log): ``` Number of CPUs (nproc): 32 ``` ACKs for top commit: MarcoFalke: lgtm ACK5d49d98731
Tree-SHA512: d97ee3587dbadb604a381aa9990b58d75441307fc98e7ae674436f8318200c8faef7171348655cdcc3ed360c8ca22eacf063cb430b826a40cb0952a436c511f3
This commit is contained in:
commit
03a4e8dd4c
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ if [ "$CI_OS_NAME" == "macos" ]; then
|
|||
echo "Number of CPUs: $(sysctl -n hw.logicalcpu)"
|
||||
else
|
||||
free -m -h
|
||||
echo "Number of CPUs \(nproc\):" \$\(nproc\)
|
||||
echo "Number of CPUs (nproc): $(nproc)"
|
||||
lscpu | grep Endian
|
||||
fi
|
||||
echo "Free disk space:"
|
||||
|
|
Loading…
Add table
Reference in a new issue