summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-06-07 17:57:36 -0400
committerGitHub <noreply@github.com>2023-06-07 17:57:36 -0400
commit794f731238f5036a980b1e1e21e7b4acb652d914 (patch)
treefa82f306f7c69424968cbe3239fb2a3a8dbe3a1a /.github/workflows/ci.generate.ts
parent19f82b0eaa14f0df58fdfc685e60c8560582c5a4 (diff)
ci: output file system space before and after building (#19409)
This will help give us better insight.
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 2e99e3f9b..b9a60f76b 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -558,7 +558,12 @@ const ci = {
{
name: "Build debug",
if: "matrix.job == 'test' && matrix.profile == 'debug'",
- run: "cargo build --locked --all-targets",
+ run: [
+ // output fs space before and after building
+ "df -h",
+ "cargo build --locked --all-targets",
+ "df -h",
+ ].join("\n"),
env: { CARGO_PROFILE_DEV_DEBUG: 0 },
},
{