Add macosx build using github action.

pull/230/head
Fredrik Öhrström 2021-02-03 11:00:42 +01:00
rodzic b30491830b
commit f21e22f46d
2 zmienionych plików z 19 dodań i 1 usunięć

Wyświetl plik

@ -0,0 +1,18 @@
name: Build MacOSX
on:
push:
branches:
- master
jobs:
build:
runs-on: runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES
run: brew install librtlsdr libusb
- id: CONFIGURE
run: ./configure
- id: MAKE
run: make
- id: TEST
run: make test

Wyświetl plik

@ -1,4 +1,4 @@
name: Build
name: Build Ubuntu
on:
push:
branches: