Skip to content

Commit f03dd13

Browse files
committed
chore: add VM diagnostics and temporarily skip sqlalchemy-bigquery
1 parent ea690fb commit f03dd13

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.kokoro/system.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,20 @@ RETVAL=0
3535

3636
pwd
3737

38+
echo "=== KOKORO VM SCOUTING ==="
39+
echo "CPU Count:"
40+
nproc
41+
echo "--------------------------"
42+
echo "Detailed CPU Info:"
43+
lscpu | grep -E "^(Model name|CPU\(s\)|Thread\(s\) per core|Core\(s\) per socket)"
44+
echo "--------------------------"
45+
echo "Memory Status:"
46+
free -h
47+
echo "--------------------------"
48+
echo "Disk Usage:"
49+
df -h /
50+
echo "=========================="
51+
3852
run_package_test() {
3953
local package_name=$1
4054
local package_path="packages/${package_name}"
@@ -120,6 +134,11 @@ for path in `find 'packages' \
120134
package_name=${package_name%%/*}
121135
package_path="packages/${package_name}"
122136

137+
if [[ "$package_name" == "sqlalchemy-bigquery" ]]; then
138+
echo "Skipping sqlalchemy-bigquery for diagnostics."
139+
continue
140+
fi
141+
123142
# Determine if we should skip based on git diff
124143
# We always check for changes in these specific versioning/config files
125144
files_to_check=(

0 commit comments

Comments
 (0)