We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abef3c4 + 9ed83ad commit 486c83eCopy full SHA for 486c83e
.github/workflows/build-lib-x64.yml
@@ -0,0 +1,33 @@
1
+name: Build library_x64.lib
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build-lib-x64:
12
+ runs-on: windows-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup MSBuild
18
+ uses: microsoft/setup-msbuild@v2
19
20
+ - name: Build library_x64.lib (Release|x64)
21
+ run: >
22
+ msbuild .\library.vcxproj
23
+ /t:Build
24
+ /p:Configuration=Release
25
+ /p:Platform=x64
26
+ /m
27
28
+ - name: Upload library_x64.lib
29
+ uses: actions/upload-artifact@v4
30
+ with:
31
+ name: library_x64.lib
32
+ path: |
33
+ **/library_x64.lib
0 commit comments