Skip to content

Commit df73936

Browse files
committed
Pin nightly to nightly-2023-01-10
This until rust-lang/rust#106796 gets fixed
1 parent 405c6a8 commit df73936

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-aya-bpf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- uses: actions-rs/toolchain@v1
3232
with:
33-
toolchain: nightly
33+
toolchain: nightly-2023-01-10
3434
components: rust-src
3535
override: true
3636

.github/workflows/build-aya.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- uses: actions-rs/toolchain@v1
5959
with:
60-
toolchain: nightly
60+
toolchain: nightly-2023-01-10
6161
components: rustfmt, clippy, rust-src
6262
target: x86_64-unknown-linux-musl
6363
override: true

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build]
22
publish = "site"
3-
command = "rustup toolchain install nightly -c rust-src && cargo xtask docs"
3+
command = "rustup toolchain install nightly-2023-01-10 -c rust-src && cargo xtask docs"

xtask/src/build_ebpf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn build_rust_ebpf(opts: &BuildEbpfOptions) -> anyhow::Result<()> {
6060

6161
let target = format!("--target={}", opts.target);
6262
let mut args = vec![
63-
"+nightly",
63+
"+nightly-2023-01-10",
6464
"build",
6565
"--verbose",
6666
target.as_str(),

xtask/src/docs/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn build_docs(working_dir: &PathBuf, abs_header_path: &Path) -> Result<(), anyho
6161
.expect("failed to replace logo");
6262
assert!(replace.success());
6363

64-
let args = vec!["+nightly", "doc", "--no-deps", "--all-features"];
64+
let args = vec!["+nightly-2023-01-10", "doc", "--no-deps", "--all-features"];
6565

6666
let status = Command::new("cargo")
6767
.current_dir(working_dir)

0 commit comments

Comments
 (0)