Skip to content

Add windows build via github Actions #1

Add windows build via github Actions

Add windows build via github Actions #1

Workflow file for this run

name: Windows/MinGW-W64
#on: [push, pull_request]
on:
push:
- branches: *

Check failure on line 6 in .github/workflows/windows-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/windows-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
pull_request:
- branches: *
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up MSYS2 MinGW-W64
uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: false
install: >-
zlib-devel
libbz2-devel
liblzma-devel
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-autotools
mingw-w64-x86_64-tools-git
- name: Compile htscodecs
shell: msys2 {0}
run: |
export PATH=/mingw64/bin:$PATH
export MSYSTEM=MINGW64
autoreconf -i
./configure --disable-shared CFLAGS='-g -O3 -D_XOPEN_SOURCE=600 -Wno-char-subscripts'
make -j32
- name: Check htscodecs
shell: msys2 {0}
run: |
export PATH=/mingw64/bin:$PATH
export MSYSTEM=MINGW64
make check || cat tests/test-suite.log