mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-21 17:31:05 +02:00
Merge bitcoin/bitcoin#27674: ci: Fix "Number of CPUs" output
5d49d987319f262ecbef6ff688fc674ed3b5fa43 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 ACK 5d49d987319f262ecbef6ff688fc674ed3b5fa43 Tree-SHA512: d97ee3587dbadb604a381aa9990b58d75441307fc98e7ae674436f8318200c8faef7171348655cdcc3ed360c8ca22eacf063cb430b826a40cb0952a436c511f3
This commit is contained in:
commit
03a4e8dd4c
@ -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…
x
Reference in New Issue
Block a user