From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 28 Sep 2022 15:33:14 +0000 (+0100) Subject: Simple build_check workflow trial. X-Git-Tag: 4.1-rc2~1^2~32^2~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=830b2a2703cea1756f18b1407d8a8cfa657a7e03;p=thirdparty%2Fshairport-sync.git Simple build_check workflow trial. --- diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml new file mode 100644 index 00000000..38952783 --- /dev/null +++ b/.github/workflows/build_check.yml @@ -0,0 +1,25 @@ +name: Build Check + +on: + push: + branches: [ "danger" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install Dependencies + run: apt install --no-install-recommends build-essential git xmltoman autoconf automake \ + libtool libpopt-dev libconfig-dev libasound2-dev avahi-daemon libavahi-client-dev \ + libssl-dev libsoxr-dev libplist-dev libsodium-dev libavutil-dev libavcodec-dev libavformat-dev uuid-dev xxd + - name: Configure + run: | + mkdir build + cd build + autoreconf -i .. + ../configure --sysconfdir=/etc --with-alsa --with-soxr --with-avahi --with-ssl=openssl --with-systemd --with-airplay-2 + - name: make + run: Make