Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Use 64-bit for Windows and disable autotools build #152

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 27 additions & 26 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,32 @@ runs:
- uses: msys2/setup-msys2@v2
if: startsWith(inputs.os, 'windows')
with:
msystem: MINGW32
msystem: MINGW64
update: true
install: >-
mingw-w64-i686-autotools
mingw-w64-i686-faad2
mingw-w64-i686-ffmpeg
mingw-w64-i686-flac
mingw-w64-i686-fluidsynth
mingw-w64-i686-gcc
mingw-w64-i686-gtk2
mingw-w64-i686-json-glib
mingw-w64-i686-lame
mingw-w64-i686-libbs2b
mingw-w64-i686-libcdio-paranoia
mingw-w64-i686-libcue
mingw-w64-i686-libmodplug
mingw-w64-i686-libopenmpt
mingw-w64-i686-libsamplerate
mingw-w64-i686-libsoxr
mingw-w64-i686-libvorbis
mingw-w64-i686-meson
mingw-w64-i686-mpg123
mingw-w64-i686-neon
mingw-w64-i686-opusfile
mingw-w64-i686-pkg-config
mingw-w64-i686-qt5-base
mingw-w64-i686-SDL2
mingw-w64-i686-wavpack
mingw-w64-x86_64-autotools
mingw-w64-x86_64-faad2
mingw-w64-x86_64-ffmpeg
mingw-w64-x86_64-flac
mingw-w64-x86_64-fluidsynth
mingw-w64-x86_64-gcc
mingw-w64-x86_64-gtk2
mingw-w64-x86_64-json-glib
mingw-w64-x86_64-lame
mingw-w64-x86_64-libbs2b
mingw-w64-x86_64-libcdio-paranoia
mingw-w64-x86_64-libcue
mingw-w64-x86_64-libmodplug
mingw-w64-x86_64-libopenmpt
mingw-w64-x86_64-libsamplerate
mingw-w64-x86_64-libsidplayfp
mingw-w64-x86_64-libsoxr
mingw-w64-x86_64-libvorbis
mingw-w64-x86_64-meson
mingw-w64-x86_64-mpg123
mingw-w64-x86_64-neon
mingw-w64-x86_64-opusfile
mingw-w64-x86_64-pkg-config
mingw-w64-x86_64-qt5-base
mingw-w64-x86_64-SDL2
mingw-w64-x86_64-wavpack
3 changes: 3 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
matrix:
os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-12', 'windows-2022']
build-system: ['autotools', 'meson']
exclude:
- os: 'windows-2022'
build-system: 'autotools'
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down