Skip to content

Commit

Permalink
monitoring memory
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Nov 8, 2024
1 parent 019cd50 commit a5e30ac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker
uses: ./.github/actions/setup-supersetbot/

- name: Start memory monitor
run: |
while true; do free -h; sleep 5; done & echo $! > monitor.pid
- name: Build Docker Image
if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker
shell: bash
Expand All @@ -88,3 +92,6 @@ jobs:
--context "$EVENT" \
--context-ref "$RELEASE" $FORCE_LATEST \
$PLATFORM_ARG
- name: Stop memory monitor
run: kill $(cat monitor.pid) || true

0 comments on commit a5e30ac

Please sign in to comment.