File tree Expand file tree Collapse file tree 5 files changed +30
-2
lines changed
Expand file tree Collapse file tree 5 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 2323 cargobuild :
2424 name : cargo build
2525 runs-on : ubuntu-latest-8-cores
26+ env :
27+ # This envvar is here to prevent `ring` from failing due to a
28+ # glibc linking error. I don't know why this fixes it and I can't
29+ # be bothered to dig in right now.
30+ #
31+ # Remove this when it no longer FTBFS on `ring` in CI.
32+ CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG : true
2633 steps :
2734 - uses : actions/checkout@v4
2835 - uses : actions-rust-lang/setup-rust-toolchain@v1
Original file line number Diff line number Diff line change 2222 cargoclippy :
2323 name : cargo clippy
2424 runs-on : ubuntu-latest
25+ env :
26+ # This envvar is here to prevent `ring` from failing due to a
27+ # glibc linking error. I don't know why this fixes it and I can't
28+ # be bothered to dig in right now.
29+ #
30+ # Remove this when it no longer FTBFS on `ring` in CI.
31+ CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG : true
2532 steps :
2633 - uses : actions/checkout@v4
2734 - uses : actions-rust-lang/setup-rust-toolchain@v1
Original file line number Diff line number Diff line change 2323 cargofmt :
2424 name : cargo fmt
2525 runs-on : ubuntu-latest
26+ env :
27+ # This envvar is here to prevent `ring` from failing due to a
28+ # glibc linking error. I don't know why this fixes it and I can't
29+ # be bothered to dig in right now.
30+ #
31+ # Remove this when it no longer FTBFS on `ring` in CI.
32+ CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG : true
2633 steps :
2734 - uses : actions/checkout@v4
2835 - uses : actions-rust-lang/setup-rust-toolchain@v1
Original file line number Diff line number Diff line change 2020 cargotest :
2121 name : cargo test
2222 runs-on : ubuntu-latest
23+ env :
24+ # This envvar is here to prevent `ring` from failing due to a
25+ # glibc linking error. I don't know why this fixes it and I can't
26+ # be bothered to dig in right now.
27+ #
28+ # Remove this when it no longer FTBFS on `ring` in CI.
29+ CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG : true
2330 steps :
2431 - uses : actions/checkout@v4
2532 - uses : actions-rust-lang/setup-rust-toolchain@v1
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ panic = "abort"
88
99[workspace ]
1010members = [
11- " bambulabs" ,
12- " moonraker"
11+ " bambulabs" ,
12+ " moonraker"
1313]
1414
1515[features ]
You can’t perform that action at this time.
0 commit comments