From 7ad283d36a7eb64bd237fb0e2c4bb8fba348e87f Mon Sep 17 00:00:00 2001 From: Enrico Fraccaroli Date: Mon, 15 Jan 2024 11:36:04 +0100 Subject: [PATCH] Remove windows github workflow --- .github/workflows/windows.yml | 36 ----------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml deleted file mode 100644 index 4279ef9..0000000 --- a/.github/workflows/windows.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Windows -on: - push: - branches-ignore: - - "releases/**" - paths-ignore: - - "**.md" - - ".gitignore" - - "**/macos.yml" - - "**/ubuntu.yml" - pull_request: - paths-ignore: - - "**.md" - - ".gitignore" - - "**/macos.yml" - - "**/ubuntu.yml" -jobs: - test: - name: Build - runs-on: windows-latest - steps: - - name: Clone repo - uses: actions/checkout@v3 - - name: Install dependencies - run: | - choco install nasm - echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - - name: Set up MinGW - uses: egor-tensin/setup-mingw@v2 - with: - version: latest - platform: x32 - - name: Build - run: | - cmake -B build - cmake --build build --parallel 2