Add sanity-check CI #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Liquidsoap scripts for correctness | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
check-liquidsoap: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
liquidsoap-version: ["1.4.3"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "4.14.0" | |
- name: Install Liquidsoap | |
run: | | |
opam pin -y --no-action liquidsoap ${{ matrix.liquidsoap-version }} | |
sudo apt update -y | |
sudo apt -f install libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev libfdk-aac-dev libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev libjack-dev libmp3lame-dev libogg-dev libopus-dev libsamplerate0-dev libswresample-dev libswscale-dev libtag1-dev libunwind-dev libvorbis-dev | |
opam install -y ffmpeg opus bjack cry fdkaac gstreamer lame samplerate taglib ssl vorbis liquidsoap | |
- name: Set up config files | |
run: | | |
pushd conf | |
for f in *.dist; do | |
cp $f ${f%.dist} | |
done | |
popd | |
- name: Check scripts | |
run: | | |
set +e | |
exit=0 | |
for f in *.liq; do | |
opam exec -- liquidsoap --check $f | |
exit=$((exit + $?)) | |
done | |
exit $exit |