We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4a851 commit b2e010cCopy full SHA for b2e010c
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,35 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'master'
7
+ paths-ignore:
8
+ - '*.md'
9
+ pull_request:
10
11
12
13
+jobs:
14
+ windows:
15
+ strategy:
16
+ matrix:
17
+ include:
18
+ - name: windows-x64
19
+ - runner: windows-latest
20
+ - arch: x64
21
+ name: ${{matrix.name}}
22
+ runs-on: ${{matrix.runner}}
23
+ steps:
24
+ - uses: actions/checkout@v4
25
26
+ - name: Build Clang
27
+ shell: cmd
28
+ run: |
29
+ build.cmd clang debug release run clean
30
31
+ - name: Build MSVC
32
33
34
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
35
+ build.cmd msvc debug release run clean
0 commit comments