]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Trial
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 28 Sep 2022 15:30:20 +0000 (16:30 +0100)
committerGitHub <noreply@github.com>
Wed, 28 Sep 2022 15:30:20 +0000 (16:30 +0100)
On the Danger branch only.

.github/workflows/build_check.yml [new file with mode: 0644]

diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml
new file mode 100644 (file)
index 0000000..3895278
--- /dev/null
@@ -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