Merge pull request #220 from drowe67/ms-github-maint
Build Windows builds for PRsms-psk-enhancements
commit
0c4fe7ca13
|
@ -1,4 +1,4 @@
|
|||
name: Build FreeDV
|
||||
name: Build FreeDV (Linux)
|
||||
|
||||
on:
|
||||
push:
|
|
@ -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
|
Loading…
Reference in New Issue