Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nightly toolchain used for -Zscript #641

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use latest nightly for -Zscript
justsmth committed Dec 20, 2024
commit 3ac17d0ca7af59f546de0ff6bc921f6f9ae414a2
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ env:
# We can pin the version if nightly is too unstable.
# Otherwise, we test against the latest version.
RUST_NIGHTLY_TOOLCHAIN: nightly
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly

jobs:
rustfmt:
2 changes: 1 addition & 1 deletion .github/workflows/fips-bindings-generator.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ env:
# We can pin the version if nightly is too unstable.
# Otherwise, we test against the latest version.
RUST_NIGHTLY_TOOLCHAIN: nightly
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
2 changes: 1 addition & 1 deletion .github/workflows/pregen-bindings.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ env:
# We can pin the version if nightly is too unstable.
# Otherwise, we test against the latest version.
RUST_NIGHTLY_TOOLCHAIN: nightly
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly
GOPROXY: https://proxy.golang.org,direct
jobs:
sys-bindings:
2 changes: 1 addition & 1 deletion .github/workflows/sys-bindings-generator.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ env:
# We can pin the version if nightly is too unstable.
# Otherwise, we test against the latest version.
RUST_NIGHTLY_TOOLCHAIN: nightly
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly-2024-05-22
RUST_SCRIPT_NIGHTLY_TOOLCHAIN: nightly

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
2 changes: 1 addition & 1 deletion aws-lc-rs/util/process-criterion-csv.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S cargo +nightly-2024-05-22 -Zscript
#!/usr/bin/env -S cargo +nightly -Zscript
---cargo
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
2 changes: 1 addition & 1 deletion scripts/tools/cargo-dig.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S cargo +nightly-2024-05-22 -Zscript
#!/usr/bin/env -S cargo +nightly -Zscript
---cargo
[dependencies]
toml = "0.8"
2 changes: 1 addition & 1 deletion scripts/tools/semver.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S cargo +nightly-2024-05-22 -Zscript
#!/usr/bin/env -S cargo +nightly -Zscript
---cargo
[dependencies]
clap = { version = "4", features = ["derive"] }
2 changes: 1 addition & 1 deletion scripts/tools/target-platform.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S cargo +nightly-2024-05-22 -Zscript
#!/usr/bin/env -S cargo +nightly -Zscript

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC