Skip to content

Commit

Permalink
Pin nightly to nightly-2023-01-10
Browse files Browse the repository at this point in the history
This until rust-lang/rust#106796 gets fixed
  • Loading branch information
alessandrod committed Jan 19, 2023
1 parent 405c6a8 commit d33ed21
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-aya-bpf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2023-01-10
components: rust-src
override: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-aya.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion xtask/src/build_ebpf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/docs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d33ed21

Please sign in to comment.