Skip to content

Commit

Permalink
[GHA] Windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
andywolk committed Mar 3, 2024
1 parent 777da09 commit 09682fc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 09682fc

Please sign in to comment.