Skip to content

Added modelName and friendlyName parameters for ssdpd #28

Added modelName and friendlyName parameters for ssdpd

Added modelName and friendlyName parameters for ssdpd #28

Workflow file for this run

name: Bob the Builder
# Run on all branches, including all pull requests, except the 'dev'
# branch since that's where we run Coverity Scan (limited tokens/day)
on:
push:
branches:
- '**'
- '!dev'
pull_request:
branches:
- '**'
jobs:
build:
# Verify we can build on latest Ubuntu with both gcc and clang
name: ${{ matrix.compiler }}
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]
fail-fast: false
env:
MAKEFLAGS: -j3
CC: ${{ matrix.compiler }}
steps:
- name: Dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install pkg-config libsystemd-dev
- uses: actions/checkout@v3
- name: Configure
run: |
./autogen.sh
./configure --prefix=
- name: Build
run: |
make
- name: Install
run: |
DESTDIR=~/tmp make install-strip
tree ~/tmp
ldd ~/tmp/sbin/ssdpd
size ~/tmp/sbin/ssdpd
ldd ~/tmp/bin/ssdp-scan
size ~/tmp/bin/ssdp-scan
~/tmp/sbin/ssdpd -h
~/tmp/bin/ssdp-scan -h
- name: Distcheck
run: |
make distcheck