We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74e4592 + d64fd48 commit 149fd9cCopy full SHA for 149fd9c
scripts/ci-e2e.sh
@@ -90,6 +90,14 @@ cleanup() {
90
91
ps -ef > "${ARTIFACTS_LOCAL}/processes-ps-ef.txt" || true
92
93
+ for PID in $(ps -eo pid=); do
94
+ echo "> PID=$PID"
95
+ echo ">> /proc/${PID}/status"
96
+ cat "/proc/${PID}/status" || true
97
+ echo ">> /proc/${PID}/stack"
98
+ cat "/proc/${PID}/stack" || true
99
+ done >> "${ARTIFACTS_LOCAL}/processes-proc-information.txt"
100
+
101
# Verify that no containers are running at this time
102
# Note: This verifies that all our tests clean up clusters correctly.
103
if [[ ! "$(docker ps -q | wc -l)" -eq "0" ]]
0 commit comments