Skip to content

Commit

Permalink
Add MINGW64 build to Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kibook authored Apr 5, 2024
1 parent a8a0737 commit 8f894c4
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
name: Build s1kd-tools

on: [push]

jobs:
build:

build-linux:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Update repositories
Expand All @@ -15,3 +12,15 @@ jobs:
run: sudo apt-get install -y -qq libxml2-dev libxslt1-dev vim-common
- name: make
run: make

build-mingw64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-pkgconf mingw-w64-x86_64-libxml2 mingw-w64-x86_64-libxslt mingw-w64-x86_64-libsystre vim
- name: make
run: make

0 comments on commit 8f894c4

Please sign in to comment.