From 9a26654e002f637846e9c607289d4f5e4d292a04 Mon Sep 17 00:00:00 2001 From: Scott Opell Date: Thu, 14 Mar 2024 20:21:51 +0000 Subject: [PATCH] Force latest image for all targets --- Cross.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cross.toml b/Cross.toml index 6d60f17b6..2d53d5b93 100644 --- a/Cross.toml +++ b/Cross.toml @@ -1,20 +1,24 @@ # Ref https://github.com/cross-rs/cross/blob/main/docs/custom_images.md#adding-dependencies-to-existing-images [target.aarch64-unknown-linux-gnu] +image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install protobuf-compiler" ] [target.aarch64-unknown-linux-musl] +image = "ghcr.io/cross-rs/aarch64-unknown-linux-musl:main" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install protobuf-compiler" ] [target.x86_64-unknown-linux-gnu] +image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install protobuf-compiler" ] [target.x86_64-unknown-linux-musl] +image = "ghcr.io/cross-rs/x86_64-unknown-linux-musl:main" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install protobuf-compiler"