wmbusmeters/.github/workflows/build_ubuntu.yml

19 wiersze
373 B
YAML
Czysty Zwykły widok Historia

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