mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: upgrade to Rust 1.68.2 (#19416)
Also prints disk size in release builds.
This commit is contained in:
parent
90c2bcdcf8
commit
dd6458b30a
3 changed files with 11 additions and 3 deletions
7
.github/workflows/ci.generate.ts
vendored
7
.github/workflows/ci.generate.ts
vendored
|
@ -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)",
|
||||
|
|
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -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' &&
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[toolchain]
|
||||
channel = "1.68.0"
|
||||
channel = "1.68.2"
|
||||
components = ["rustfmt", "clippy"]
|
||||
|
|
Loading…
Reference in a new issue