Skip to content

Commit

Permalink
github action: build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
LudovicRousseau committed Dec 30, 2023
1 parent 4da155f commit a40100a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Windows

on: [push, pull_request]

jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}

steps:
- uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
pacboy: >-
autoconf
autoconf-archive
automake
gcc
gettext:p
make
pkg-config
- uses: actions/checkout@v4

- name: compile
run: |
./bootstrap
./configure
make V=1

0 comments on commit a40100a

Please sign in to comment.