mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-23 06:42:51 +03:00
Merge #140: CI build: print number of VM CPUs
31ad56950f
CI build: print number of VM CPUs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK31ad56950f
Tree-SHA512: ff6c43d24f4121d0f1a89e82bb58e182ba044662cb00e7fc879168e7f697d171bc6fbed5d22d983fc6ded11fadbbb4e433133709bf4512882412ac8908e15156
This commit is contained in:
commit
87129b10c1
@ -85,7 +85,8 @@ exprForCI() {
|
|||||||
# Round down to nearest multiple of 50 MiB for improved test build caching
|
# Round down to nearest multiple of 50 MiB for improved test build caching
|
||||||
((memAvailableMiB = memAvailableKiB / (1024 * 50) * 50))
|
((memAvailableMiB = memAvailableKiB / (1024 * 50) * 50))
|
||||||
((memAvailableMiB < memoryMiB)) && memoryMiB=$memAvailableMiB
|
((memAvailableMiB < memoryMiB)) && memoryMiB=$memAvailableMiB
|
||||||
>&2 echo "Host memory: total $((memTotalKiB / 1024)) MiB, available $memAvailableMiB MiB, VM $memoryMiB MiB"
|
>&2 echo "VM stats: CPUs: $numCPUs, memory: $memoryMiB MiB"
|
||||||
|
>&2 echo "Host memory total: $((memTotalKiB / 1024)) MiB, available: $memAvailableMiB MiB"
|
||||||
vmTestNixExpr
|
vmTestNixExpr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user