Pin nightly to nightly-2023-01-10

This until https://github.com/rust-lang/rust/pull/106796 gets fixed
pull/497/head
Alessandro Decina 2 years ago
parent 405c6a8533
commit d33ed21fc4

@ -30,7 +30,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2023-01-10
components: rust-src
override: true

@ -57,7 +57,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2023-01-10
components: rustfmt, clippy, rust-src
target: x86_64-unknown-linux-musl
override: true

@ -1,3 +1,3 @@
[build]
publish = "site"
command = "rustup toolchain install nightly -c rust-src && cargo xtask docs"
command = "rustup toolchain install nightly-2023-01-10 -c rust-src && cargo xtask docs"

@ -60,7 +60,7 @@ fn build_rust_ebpf(opts: &BuildEbpfOptions) -> anyhow::Result<()> {
let target = format!("--target={}", opts.target);
let mut args = vec![
"+nightly",
"+nightly-2023-01-10",
"build",
"--verbose",
target.as_str(),

@ -61,7 +61,7 @@ fn build_docs(working_dir: &PathBuf, abs_header_path: &Path) -> Result<(), anyho
.expect("failed to replace logo");
assert!(replace.success());
let args = vec!["+nightly", "doc", "--no-deps", "--all-features"];
let args = vec!["+nightly-2023-01-10", "doc", "--no-deps", "--all-features"];
let status = Command::new("cargo")
.current_dir(working_dir)

Loading…
Cancel
Save