Remove windows github workflow

This commit is contained in:
Enrico Fraccaroli
2024-01-15 11:36:04 +01:00
parent e630f89547
commit 7ad283d36a
-36
View File
@@ -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