Skip to content

Commit

Permalink
test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Sep 9, 2023
1 parent 4cfe57e commit 05cf9e3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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 ${{ 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)

0 comments on commit 05cf9e3

Please sign in to comment.