Merge pull request #220 from drowe67/ms-github-maint

Build Windows builds for PRs
ms-psk-enhancements
Mooneer Salem 2022-03-27 23:53:07 -07:00 committed by GitHub
commit 0c4fe7ca13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 1 deletions

View File

@ -1,4 +1,4 @@
name: Build FreeDV
name: Build FreeDV (Linux)
on:
push:

View File

@ -0,0 +1,26 @@
name: Build FreeDV (Windows)
on:
push:
branches-ignore:
- 'dr-render-manual'
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build freedv-gui
shell: bash
working-directory: ${{github.workspace}}/docker
run: ./freedv_build_windows.sh --branch ${{github.ref}} 64