diff options
-rwxr-xr-x | chromium-ffmpeg-test.sh | 2 | ||||
-rw-r--r-- | snapcraft.yaml | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/chromium-ffmpeg-test.sh b/chromium-ffmpeg-test.sh index 4e3e8d3..ae95fbc 100755 --- a/chromium-ffmpeg-test.sh +++ b/chromium-ffmpeg-test.sh @@ -2,7 +2,7 @@ set -eux -VERSIONS="98516 103551 104195 104707 106454 107578" +VERSIONS="98516 103551 104195 104707 106454 107578 108372" for V in $VERSIONS; do LIBFFMPEGSO=$SNAP/chromium-ffmpeg-$V/chromium-ffmpeg/libffmpeg.so [[ -f $LIBFFMPEGSO ]] diff --git a/snapcraft.yaml b/snapcraft.yaml index 7fef5b8..242811d 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -12,6 +12,7 @@ description: | snap connect chromium-ffmpeg-test:chromium-ffmpeg-104707 chromium-ffmpeg:chromium-ffmpeg-104707 snap connect chromium-ffmpeg-test:chromium-ffmpeg-106454 chromium-ffmpeg:chromium-ffmpeg-106454 snap connect chromium-ffmpeg-test:chromium-ffmpeg-107578 chromium-ffmpeg:chromium-ffmpeg-107578 + snap connect chromium-ffmpeg-test:chromium-ffmpeg-108372 chromium-ffmpeg:chromium-ffmpeg-108372 snap run chromium-ffmpeg-test The exit code should be 0 in case of success, non-zero otherwise. confinement: strict @@ -42,6 +43,10 @@ plugs: interface: content target: $SNAP/chromium-ffmpeg-107578 default-provider: chromium-ffmpeg + chromium-ffmpeg-108372: + interface: content + target: $SNAP/chromium-ffmpeg-108372 + default-provider: chromium-ffmpeg apps: chromium-ffmpeg-test: @@ -60,3 +65,4 @@ parts: mkdir -p chromium-ffmpeg-104707 mkdir -p chromium-ffmpeg-106454 mkdir -p chromium-ffmpeg-107578 + mkdir -p chromium-ffmpeg-108372 |