dev: Add template for VSCode settings and devcontainers #1068
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
- 'htdocs/**' | |
- 'web-src/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
- 'htdocs/**' | |
- 'web-src/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -yq build-essential clang clang-tools git autotools-dev autoconf libtool gettext gawk gperf bison flex libconfuse-dev libunistring-dev libsqlite3-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev libavutil-dev libasound2-dev libxml2-dev libgcrypt20-dev libavahi-client-dev zlib1g-dev libevent-dev libplist-dev libsodium-dev libcurl4-openssl-dev libjson-c-dev libprotobuf-c-dev libpulse-dev libwebsockets-dev libgnutls28-dev | |
- name: Build and check | |
run: | | |
autoreconf -vi | |
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-install-user --enable-chromecast --with-pulseaudio | |
make | |
make check | |
make distcheck | |
- name: Install | |
run: | | |
sudo mkdir -p /srv/music | |
sudo make install | |
sudo sed -i 's/loglevel = log/loglevel = debug/g' /etc/owntone.conf | |
- name: Install and run avahi-daemon | |
run: | | |
sudo apt-get install -yq avahi-daemon | |
- name: Test run | |
run: | | |
sudo /usr/sbin/owntone -f -t |