]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[GHA] Windows build. windows_build 2398/head
authorAndrey Volk <andywolk@gmail.com>
Sat, 2 Mar 2024 00:20:06 +0000 (03:20 +0300)
committerAndrey Volk <andywolk@gmail.com>
Sun, 3 Mar 2024 19:22:44 +0000 (22:22 +0300)
.github/workflows/windows.yml [new file with mode: 0644]

diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644 (file)
index 0000000..8908164
--- /dev/null
@@ -0,0 +1,27 @@
+name: Windows
+
+on:
+  pull_request:
+    types: [opened, synchronize]
+  push:
+    branches: [master, v1.10]
+jobs:
+  x64:
+    runs-on: windows-2019
+
+    steps:
+    - uses: actions/checkout@v3
+      with:
+        fetch-depth: 0
+
+    - name: Add msbuild to PATH
+      uses: microsoft/setup-msbuild@v2
+
+    - name: Build
+      run: msbuild Freeswitch.2017.sln -t:build -verbosity:minimal -property:Configuration=Release -property:Platform=x64
+
+    - name: Upload Artifact
+      uses: actions/upload-artifact@v2
+      with:
+        name: MSI Package
+        path: D:\a\freeswitch\freeswitch\x64\*.msi
\ No newline at end of file