Skip to content

Commit

Permalink
chore: upgrade to Rust 1.68.2 (denoland#19416)
Browse files Browse the repository at this point in the history
Also prints disk size in release builds.
  • Loading branch information
bartlomieju committed Jun 8, 2023
1 parent 90c2bcd commit dd6458b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' &&
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.68.0"
channel = "1.68.2"
components = ["rustfmt", "clippy"]

0 comments on commit dd6458b

Please sign in to comment.