diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index efe9e17de5..616d4653bc 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -575,7 +575,12 @@ const ci = { "(github.ref == 'refs/heads/main' ||", "startsWith(github.ref, 'refs/tags/'))))", ].join("\n"), - run: "cargo build --release --locked --all-targets", + run: [ + // output fs space before and after building + "df -h", + "cargo build --release --locked --all-targets", + "df -h", + ].join("\n"), }, { name: "Upload PR artifact (linux)", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a20b6cd23..a2cfa572c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -349,7 +349,10 @@ jobs: (github.repository == 'denoland/deno' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))))) - run: cargo build --release --locked --all-targets + run: |- + df -h + cargo build --release --locked --all-targets + df -h - name: Upload PR artifact (linux) if: |- !(github.event_name == 'pull_request' && matrix.skip_pr) && (matrix.job == 'test' && diff --git a/rust-toolchain.toml b/rust-toolchain.toml index b2cf8c5f28..434cca4575 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.68.0" +channel = "1.68.2" components = ["rustfmt", "clippy"]