Skip to content

Add Windows CI via github actions #3

Add Windows CI via github actions

Add Windows CI via github actions #3

Workflow file for this run

name: Windows/MinGW-W64 CI
on: [push, pull_request]
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: >-
git
autotools
gcc
zlib-devel
libbz2-devel
liblzma-devel
ncurses-devel
mingw-w64-x86_64-tools-git
- name: Compile htslib
shell: msys2 {0}
run: |

Check failure on line 26 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 26
export PATH=$PATH:/mingw64/bin
export MSYSTEM=MINGW64
autoreconf -i
./configure
make -j32
- name: Check Htslib
shell: msys2 {0}
run: |
export PATH=$PATH:/mingw64/bin
export MSYSTEM=MINGW64
make check