Skip to content

Commit

Permalink
Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
massimo-nocentini committed Mar 21, 2024
1 parent 9a1b0c6 commit 2a45919
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,27 @@ jobs:
with:
name: ubuntu-artifacts
path: artifacts

windows:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
update: true
msystem: UCRT64
install: >-
curl
git
mingw-w64-ucrt-x86_64-toolchain
- uses: actions/checkout@v4
- run: cd src && make mingw
- run: mkdir artifacts && cp src/*.h src/*.dll artifacts/
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: windows-artifacts
path: artifacts

0 comments on commit 2a45919

Please sign in to comment.