From 1d15878254acb56c65d14fb2ee742d8b3dcb92bb Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Thu, 23 Jan 2025 22:05:29 -0300 Subject: [PATCH] ci: disable windows builds until upstream issues are resolved (#441) --- .github/workflows/validate.yml | 10 +++++++--- Cargo.toml | 8 +------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5549dae6..9e8b6ac9 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -3,9 +3,9 @@ on: push: branches: - - '**' + - "**" tags-ignore: - - v* + - v* name: Validate @@ -15,7 +15,11 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-latest, ubuntu-latest, macOS-latest] + os: [ + # windows-latest, + ubuntu-latest, + macOS-latest, + ] rust: [stable] runs-on: ${{ matrix.os }} steps: diff --git a/Cargo.toml b/Cargo.toml index c29a73a1..5a91dfc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -104,13 +104,7 @@ installers = ["shell", "powershell", "npm", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "txpipe/homebrew-tap" # 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", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] # Publish jobs to run in CI publish-jobs = ["homebrew"] # Publish jobs to run in CI