From 09f75b27a1ae1a73fc190f7e3465a6b9e0250a1a Mon Sep 17 00:00:00 2001 From: iwuliz Date: Fri, 20 Sep 2024 17:33:01 +0930 Subject: [PATCH] build: display free disk space after build in the test-macOS workflow PR-URL: https://github.com/nodejs/node/pull/55025 Reviewed-By: Richard Lau Reviewed-By: Jake Yuesong Li Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- .github/workflows/test-macos.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index ecbd3184a1c145..f3b3e77b2e733e 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -81,5 +81,7 @@ jobs: echo "::endgroup::" - name: Build run: make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn" + - name: Free Space After Build + run: df -h - name: Test run: make run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"