test github actions / 2 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ${{ matrix.pkg }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Create and run Autotools configure script | |
run: | | |
(cd libmikmod && autoreconf && ./configure) | |
- name: Autotools build | |
run: | | |
(cd libmikmod && make -j 3) |