From 29187045dbdb498f100859f098bed4d8c43be303 Mon Sep 17 00:00:00 2001 From: Phoenix Himself Date: Tue, 1 Oct 2024 17:15:54 +0200 Subject: [PATCH 1/2] feat: add CI windows support --- Cargo.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 89ded8a9..6790e465 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,15 +46,10 @@ ci = "github" # The installers to generate for each app installers = [] # Target platforms to build apps for (Rust target-triple syntax) -targets = [ - "aarch64-apple-darwin", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl", -] +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI pr-run-mode = "skip" -# Allow modifying release.yml +# Skip checking whether the specified configuration files are up to date allow-dirty = ["ci"] [build-dependencies] From e3178dabcace9b9bc92589b36052a36f55f1c32c Mon Sep 17 00:00:00 2001 From: Daniele Scasciafratte Date: Wed, 2 Oct 2024 11:24:00 +0200 Subject: [PATCH 2/2] review --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6790e465..5f74ad74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,13 @@ ci = "github" # The installers to generate for each app installers = [] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] +targets = [ + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + "x86_64-pc-windows-msvc" +] # Publish jobs to run in CI pr-run-mode = "skip" # Skip checking whether the specified configuration files are up to date