diff --git a/.github/workflows/windows-mingw.yml b/.github/workflows/windows-mingw.yml deleted file mode 100644 index ff155e7..0000000 --- a/.github/workflows/windows-mingw.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Windows MinGW - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: windows-latest - - steps: - - name: Set up MinGW - uses: egor-tensin/setup-mingw@v2.2.0 - with: - version: 12.2.0 - platform: x64 - - uses: actions/checkout@v3 - - name: Rustup Toolchain - run: rustup toolchain install stable-x86_64-pc-windows-gnu - - name: Rustup Target - run: rustup target add x86_64-pc-windows-gnu - - name: Build - run: cargo +stable-x86_64-pc-windows-gnu build --verbose --target x86_64-pc-windows-gnu - - name: Upload a Build Artifact - uses: actions/upload-artifact@v4.3.1 - with: - name: insanity-mingw.exe - path: target/x86_64-pc-windows-gnu/release/insanity.exe