File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Meson: MSVC"
2
+
3
+ # Fails:
4
+ # subprojects\libsigcplusplus-2.0\meson.build:116:5:
5
+ # ERROR: Program 'm4' not found or not executable
6
+
7
+ # Triggered manually
8
+ on : [workflow_dispatch]
9
+
10
+ jobs :
11
+ build :
12
+
13
+ runs-on : windows-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v3
17
+ - uses : actions/setup-python@v4
18
+ with :
19
+ python-version : ' 3.x'
20
+ - run : pip install meson ninja
21
+
22
+ - name : Prepare MSVC
23
+ uses : bus1/cabuild/action/msdevshell@v1
24
+ with :
25
+ architecture : x64
26
+
27
+ - name : Configure
28
+ # Don't use warning_level or werror. They are applied also to subprojects.
29
+ run : meson setup -Dwarnings=fatal -Dmaintainer-mode=false -Dbuild-documentation=false _build
30
+
31
+ - name : Compile
32
+ run : meson compile -C _build
33
+
34
+ - name : Test
35
+ run : meson test -C _build
You can’t perform that action at this time.
0 commit comments