test: liquidsoap package from ppa is version 1.4.2 (#2223)

The PPA was previously not properly installed in the dev container.
This commit is contained in:
Jonas L 2022-10-10 21:14:41 +02:00 committed by GitHub
parent 5817750b62
commit 499f4d37ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ jobs:
COPY packages.list packages.list
EOF
[[ "${{ matrix.release }}" =~ "focal" ]] && \
[[ "${{ matrix.release }}" == "focal" ]] && \
cat <<EOF >> Dockerfile
RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \

View File

@ -28,7 +28,7 @@ def test_parse_liquidsoap_version(version, expected):
@pytest.mark.skipif(getenv("CI") != "true", reason="requires liquidsoap")
def test_get_liquidsoap_version():
LIQUIDSOAP_VERSION_MAP = {
"focal": (1, 4, 1),
"focal": (1, 4, 2),
"bullseye": (1, 4, 3),
"jammy": (2, 0, 2),
}