From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 28 Sep 2022 16:07:17 +0000 (+0100) Subject: Enhance build_check workflow. X-Git-Tag: 4.1-rc2~1^2~32^2~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b96d0cb5f10e5d58357f79d0aac8d3011617dea;p=thirdparty%2Fshairport-sync.git Enhance build_check workflow. --- diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml index 59cfd383..c0480d67 100644 --- a/.github/workflows/build_check.yml +++ b/.github/workflows/build_check.yml @@ -13,13 +13,20 @@ jobs: - uses: actions/checkout@v3 - name: Install Dependencies run: sudo apt-get -y --no-install-recommends install 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: Build + - 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: | + cd build make -j + - name: Install + run: | + ls -al ../scripts + cd build sudo make install - name: Invoke run: |