ci: factor out iterate_plugins()

Will be re-used for another test.

Also explicitly list the 'rs' prefixed plugins.
This commit is contained in:
Guillaume Desmottes 2020-11-27 13:27:05 +01:00
parent 32d511684e
commit 9167e5e561
2 changed files with 22 additions and 12 deletions

View file

@ -5,8 +5,7 @@ import sys
import os
import glob
DIRS = ['audio', 'generic', 'net', 'text', 'utils', 'video']
OVERRIDE = {'wrap': 'textwrap', 'flavors': 'rsflv'}
from utils import iterate_plugins
prefix = sys.argv[1]
@ -17,17 +16,12 @@ print("Built plugins:", plugins)
success = True
for d in DIRS:
for name in os.listdir(d):
name = OVERRIDE.get(name, name)
for name in iterate_plugins():
plugin = "libgst{}.so".format(name)
plugin = "libgst{}.so".format(name)
# Some plugins are prefixed with 'rs'
rs_plugin = "libgstrs{}.so".format(name)
if plugin not in plugins and rs_plugin not in plugins:
print(name, "missing in", prefix)
success = False
if plugin not in plugins:
print(name, "missing in", prefix)
success = False
if not success:
sys.exit(1)

16
ci/utils.py Normal file
View file

@ -0,0 +1,16 @@
import os
DIRS = ['audio', 'generic', 'net', 'text', 'utils', 'video']
# Plugins whose name is prefixed by 'rs'
RS_PREFIXED = ['audiofx', 'closedcaption', 'dav1d', 'file']
OVERRIDE = {'wrap': 'rstextwrap', 'flavors': 'rsflv'}
def iterate_plugins():
for d in DIRS:
for name in os.listdir(d):
if name in RS_PREFIXED:
name = "rs{}".format(name)
else:
name = OVERRIDE.get(name, name)
yield name