From cf54849188f9405228d053990a251adf4715040c Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Fri, 20 Sep 2024 13:56:19 +0200 Subject: [PATCH] fix(build): Remove aarch64 linux build for now --- Cargo.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 40006de8..b11e7486 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,13 +9,7 @@ cargo-dist-version = "0.22.1" # CI backends to support ci = "github" # Target platforms to build apps for (Rust target-triple syntax) -targets = [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", -] +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] # The installers to generate for each app installers = ["shell", "msi"] # Which actions to run on pull requests