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:
parent
5817750b62
commit
499f4d37ed
|
@ -55,7 +55,7 @@ jobs:
|
||||||
COPY packages.list packages.list
|
COPY packages.list packages.list
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
[[ "${{ matrix.release }}" =~ "focal" ]] && \
|
[[ "${{ matrix.release }}" == "focal" ]] && \
|
||||||
cat <<EOF >> Dockerfile
|
cat <<EOF >> Dockerfile
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \
|
RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \
|
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \
|
||||||
|
|
|
@ -28,7 +28,7 @@ def test_parse_liquidsoap_version(version, expected):
|
||||||
@pytest.mark.skipif(getenv("CI") != "true", reason="requires liquidsoap")
|
@pytest.mark.skipif(getenv("CI") != "true", reason="requires liquidsoap")
|
||||||
def test_get_liquidsoap_version():
|
def test_get_liquidsoap_version():
|
||||||
LIQUIDSOAP_VERSION_MAP = {
|
LIQUIDSOAP_VERSION_MAP = {
|
||||||
"focal": (1, 4, 1),
|
"focal": (1, 4, 2),
|
||||||
"bullseye": (1, 4, 3),
|
"bullseye": (1, 4, 3),
|
||||||
"jammy": (2, 0, 2),
|
"jammy": (2, 0, 2),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue