From 5f28bb4dc693e5dd2ae2080382657fa4e864e02f Mon Sep 17 00:00:00 2001 From: TaurusXin Date: Sat, 4 Oct 2025 13:32:46 +0800 Subject: [PATCH] removed: build for mingw --- .github/workflows/autobuild.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 6bfbd9f..f7a578e 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -7,37 +7,6 @@ on: branches: [ main ] jobs: - build_on_windows_msys2: - runs-on: windows-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - submodules: recursive - - - name: Install dependencies - uses: msys2/setup-msys2@v2 - with: - msystem: UCRT64 - update: true - install: git mingw-w64-ucrt-x86_64-toolchain - - - name: Configure build - run: cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -B ${{ env.BUILD_PATH }} - - - name: Build - run: cmake --build ${{ env.BUILD_PATH }} -j 4 - - - name: Strip - run: strip ${{ env.BUILD_PATH }}/ncmdump.exe - - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: windows_amd64_build_msys2_exe - path: ${{ env.BUILD_PATH }}/ncmdump.exe - build_on_windows_msvc: runs-on: windows-latest