wmbusmeters/.github/workflows/build_macosx.yml

19 wiersze
352 B
YAML
Czysty Zwykły widok Historia

2021-02-03 10:00:42 +00:00
name: Build MacOSX
2021-02-03 09:40:02 +00:00
on:
push:
branches:
- master
jobs:
build:
2021-02-03 10:00:42 +00:00
runs-on: runs-on: macOS-latest
2021-02-03 09:40:02 +00:00
steps:
- uses: actions/checkout@v2
2021-02-03 09:54:02 +00:00
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES
2021-02-03 10:00:42 +00:00
run: brew install librtlsdr libusb
2021-02-03 09:40:02 +00:00
- id: CONFIGURE
run: ./configure
- id: MAKE
run: make
- id: TEST
run: make test