Skip to content

Commit

Permalink
msys2 CI
Browse files Browse the repository at this point in the history
Signed-off-by: Rosen Penev <[email protected]>
  • Loading branch information
neheb committed Dec 25, 2023
1 parent b8b0652 commit 011a984
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,59 @@ jobs:
setup-options: -Ddocumentation=disabled -Dtest=true
options: --verbose
meson-version: 0.56.0

build-msys2:
strategy:
matrix:
platform: ['MINGW32', 'MINGW64', 'UCRT64', 'CLANG32', 'CLANG64']
defaults:
run:
shell: msys2 {0}
runs-on: windows-latest
steps:
- id: checkout
uses: actions/checkout@v4

- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.platform}}
pacboy: >-
cc:p
chromaprint:p
cmake:p
dbus:p
faad2:p
ffmpeg:p
fmt:p
flac:p
fluidsynth:p
gtest:p
libao:p
libcdio-paranoia:p
libid3tag:p
libmikmod:p
libnfs:p
libopenmpt:p
libsamplerate:p
libshout:p
libsidplayfp:p
libsndfile:p
libsoxr:p
libvorbis:p
mpg123:p
meson:p
ninja:p
opus:p
pulseaudio:p
pupnp:p
shine:p
twolame:p
wavpack:p
yajl:p
zziplib:p
- name: Compile and Test
run: |
meson setup "${{github.workspace}}/build" -Ddocumentation=disabled -Dicu=disabled -Dtest=true -Dwarning_level=3 -Dcpp_std=c++20
meson compile -C "${{github.workspace}}/build" --verbose
meson test -C "${{github.workspace}}/build" --verbose

0 comments on commit 011a984

Please sign in to comment.