]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Enhance build_check workflow.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 28 Sep 2022 16:07:17 +0000 (17:07 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 28 Sep 2022 16:07:17 +0000 (17:07 +0100)
.github/workflows/build_check.yml

index 59cfd383c1dbbb6560a2360dbfa10ff81b26c92b..c0480d67fd39c24e1b8f0d31ffcb7b3b17068888 100644 (file)
@@ -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: |