From c35a1d67fbe8c139c0d93cc2e6ec024a9f9b3e1d Mon Sep 17 00:00:00 2001 From: Matthew Orris <--help> Date: Wed, 13 Mar 2024 08:09:51 -0600 Subject: [PATCH] Update Cross.toml to include pre-build steps for aarch64-unknown-linux-gnu target --- Cross.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cross.toml b/Cross.toml index a5a5064b5b..bd7d55b36d 100644 --- a/Cross.toml +++ b/Cross.toml @@ -1,8 +1,8 @@ -[build] -dockerfile = "./tools/ci/docker/aarch64-unknown-linux-gnu.dockerfile" +# [build] +# dockerfile = "./tools/ci/docker/aarch64-unknown-linux-gnu.dockerfile" -# [target.aarch64-unknown-linux-gnu] -# pre-build = [ -# "apt-get update && apt-get install -y protobuf-compiler", -# "rm -rf /var/lib/apt/lists/*", -# ] +[target.aarch64-unknown-linux-gnu] +pre-build = [ + "apt-get update && apt-get install -y protobuf-compiler", + "rm -rf /var/lib/apt/lists/*", +]