Skip to content

Commit

Permalink
Downgrade Rust Docker images to 1.59 to fix CI failures (ref #2263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutomic committed May 20, 2022
1 parent 9ef0efa commit 3ce605a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/apub_lib/src/object_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ where
Kind: ApubObject + Send + 'static,
for<'de2> <Kind as ApubObject>::ApubType: serde::Deserialize<'de2>,
{
#[allow(clippy::to_string_in_display)]
#[allow(clippy::recursive_format_impl)]
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
// Use to_string here because Url.display is not useful for us
write!(f, "{}", self.0)
Expand Down
2 changes: 1 addition & 1 deletion docker/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.60.0
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.59.0

FROM $RUST_BUILDER_IMAGE as chef
USER root
Expand Down
2 changes: 1 addition & 1 deletion docker/prod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the project
FROM clux/muslrust:1.60.0 as builder
FROM clux/muslrust:1.59.0 as builder

ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
ARG RUSTRELEASEDIR="release"
Expand Down

0 comments on commit 3ce605a

Please sign in to comment.