Skip to content

gcc13 test

gcc13 test #5

Workflow file for this run

name: Regression tests
on:
- pull_request
- push
jobs:
windows-msys2:
runs-on: windows-latest
strategy:
matrix:
include: [
{installs: "MINGW32", pkg: "mingw-w64-i686-gcc" },
{installs: "MINGW64", pkg: "mingw-w64-x86_64-gcc" },
]
defaults:
run:
shell: msys2 {0}
steps:
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.installs }}
update: true
install: base-devel git autoconf automake libtool texinfo ${{ matrix.pkg }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Create and run Autotools configure script
run: |
(cd libmikmod && autoreconf -i && ./configure)
- name: Autotools build
run: |
(cd libmikmod && make -j 3)