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

Pin nightly to nightly-2023-01-10 #494

Merged
merged 2 commits into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
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