We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 867c1de commit 96b6c8cCopy full SHA for 96b6c8c
bin/cli.js
@@ -111,8 +111,21 @@ if (!command || command === "build") {
111
112
if (!command || command === "bench") {
113
if (isGitHubActions) {
114
- await $`lscpu -e=CPU,MHZ`;
115
- await $`echo "CPU Usage: "$[100-$(vmstat 1 2|tail -1|awk '{print $15}')]"%"`;
+ await $`echo "===== System Information ====="`;
+ await $`uname -a`;
116
+ await $`cat /etc/os-release`;
117
+ await $`uname -r`;
118
+ await $`uptime`;
119
+
120
+ await $`echo "===== Resource Usage ====="`;
121
+ await $`top -b -n1 | head -n10`;
122
+ await $`vmstat`;
123
+ await $`df -h`;
124
+ await $`free -h`;
125
126
+ await $`echo "===== Hardware Information ====="`;
127
+ await $`lscpu`;
128
+ await $`lsblk`;
129
}
130
131
const shardPair = shard.split("/").map(t => parseInt(t, 10));
0 commit comments