-
Notifications
You must be signed in to change notification settings - Fork 43
46 lines (40 loc) · 964 Bytes
/
build-windows-msys2.yml
File metadata and controls
46 lines (40 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Windows (MSYS2)
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v6
- name: "Setup MSYS2"
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
release: false
install: >-
git
make
mingw-w64-ucrt-x86_64-cmake
mingw-w64-ucrt-x86_64-gcc
mingw-w64-ucrt-x86_64-doxygen
mingw-w64-ucrt-x86_64-graphviz
msys2-w32api-runtime
python-pip
- name: "Setup cmake"
run: cmake --version
- name: "Setup gil"
run: |
pip3 install gil --break-system-packages
gil update
- name: "Build"
env:
INCLUDE: C:\msys64\usr\include\w32api
LIB: C:\msys64\usr\lib\w32api
run: |
cd build
./unix.sh