From f2460d929f81a9e017214c847407c220240a24f5 Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Thu, 12 Dec 2024 15:58:37 +0100 Subject: [PATCH] Add debug output --- .github/workflows/build-check.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build-check.yaml b/.github/workflows/build-check.yaml index 9604ddae8..768a37ec0 100644 --- a/.github/workflows/build-check.yaml +++ b/.github/workflows/build-check.yaml @@ -270,6 +270,12 @@ jobs: - name: Install valgrind run: sudo apt install -y valgrind + + - name: Monitor memory and CPU + run: top -b -n1 + + - name: Check disk usage + run: df -h - name: Build project and run test run: | @@ -277,6 +283,9 @@ jobs: Z_FEATURE_UNSTABLE_API=1 Z_FEATURE_LIVELINESS=1 CMAKE_GENERATOR=Ninja make python3 ./build/tests/memory_leak.py timeout-minutes: 5 + env: + ACTIONS_STEP_DEBUG: true + ACTIONS_RUNNER_DEBUG: true - name: Kill Zenoh router if: always()