From: Andrey Volk Date: Sat, 2 Mar 2024 00:20:06 +0000 (+0300) Subject: [GHA] Windows build. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2398%2Fhead;p=thirdparty%2Ffreeswitch.git [GHA] Windows build. --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000000..8908164d38 --- /dev/null +++ b/.github/workflows/windows.yml @@ -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