mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-03 08:39:49 +02:00
Add github build action
This commit is contained in:
parent
91321b18f3
commit
007b1fa693
1 changed files with 17 additions and 0 deletions
17
.github/workflows/ubuntu.yml
vendored
Normal file
17
.github/workflows/ubuntu.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Ubuntu
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: dependencies
|
||||
run: sudo apt-get update && sudo apt-get install -yq libasound2-dev libsoxr-dev libvorbisidec-dev libvorbis-dev libflac-dev libopus-dev alsa-utils libavahi-client-dev avahi-daemon
|
||||
- name: cmake build
|
||||
run: cmake -S . -B build
|
||||
- name: cmake make
|
||||
run: cmake --build build
|
Loading…
Add table
Add a link
Reference in a new issue