Skip to content

Commit

Permalink
Create windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YomikoR authored Apr 15, 2024
1 parent 75bb6d6 commit 3535421
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Windows

on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: windows-latest

defaults:
run:
shell: msys2 {0}

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: >-
autoconf
automake
base-devel
git
libtool
mingw-w64-ucrt-x86_64-cmake
mingw-w64-ucrt-x86_64-lcms2
mingw-w64-ucrt-x86_64-meson
mingw-w64-ucrt-x86_64-toolchain
mingw-w64-ucrt-x86_64-vapoursynth
- name: Build
run: |
meson build
ninja -C build
strip build/libiccc.dll
- uses: actions/upload-artifact@v4
with:
name: iccc
path: build/libiccc.dll

0 comments on commit 3535421

Please sign in to comment.