File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 64
64
id : cpu-cores
65
65
if : matrix.target == 'qvm'
66
66
67
+ - uses : ammaraskar/gcc-problem-matcher@0.3.0
68
+ if : matrix.target != 'qvm'
69
+
67
70
- name : Checkout q3lcc
68
71
uses : actions/checkout@v4
69
72
with :
91
94
qwprogs.*
92
95
compression-level : 9
93
96
97
+ verify-macos :
98
+ runs-on : macos-latest
99
+ timeout-minutes : 10
100
+ steps :
101
+ - name : Checkout
102
+ uses : actions/checkout@v4
103
+
104
+ - uses : ammaraskar/gcc-problem-matcher@0.3.0
105
+
106
+ - name : Build
107
+ run : |
108
+ cmake -B builddir -S . -G Xcode -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
109
+ cmake --build builddir --config Release --parallel
110
+
111
+ verify-msvc :
112
+ runs-on : windows-latest
113
+ timeout-minutes : 10
114
+ steps :
115
+ - name : Checkout
116
+ uses : actions/checkout@v4
117
+
118
+ - uses : ammaraskar/msvc-problem-matcher@0.3.0
119
+
120
+ - name : Build
121
+ run : |
122
+ cmake -B builddir -S . -G "Visual Studio 17 2022"
123
+ cmake --build builddir --config Release --parallel
124
+
94
125
upload :
95
126
needs : build
96
127
timeout-minutes : 10
You can’t perform that action at this time.
0 commit comments