From ea88d5f24be73ac1ce7c0d0ed462c107ece32c77 Mon Sep 17 00:00:00 2001 From: Matt <1009003+tantaman@users.noreply.github.com> Date: Wed, 11 Oct 2023 12:39:11 -0400 Subject: [PATCH] install mingw --- .github/workflows/publish.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index f0fdc9dbd..d569a878a 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -150,6 +150,10 @@ jobs: rustup target add x86_64-pc-windows-gnu --toolchain nightly-2023-10-05 rustup component add rust-src --toolchain nightly-2023-10-05-x86_64-unknown-linux-gnu + - name: mingw-w64 + run: | + sudo apt update && sudo apt install -y mingw-w64 + - name: Build run: | cd core @@ -182,6 +186,11 @@ jobs: run: | rustup toolchain install nightly-2023-10-05 rustup target add i686-pc-windows-gnu --toolchain nightly-2023-10-05 + rustup component add rust-src --toolchain nightly-2023-10-05-x86_64-unknown-linux-gnu + + - name: mingw-w64 + run: | + sudo apt update && sudo apt install -y mingw-w64 - name: Build run: |