diff --git a/global-conf.sh b/global-conf.sh index 65a1dcf8042545c5781174b956eabb113e0429d6..998177f1b9cb6cfbf45d021574a79c3e719e203b 100644 --- a/global-conf.sh +++ b/global-conf.sh @@ -4,15 +4,7 @@ # Default configuration values # ---------------------------- - -# -- Constants -- -CYAN='\033[0;36m' -PURPLE='\033[0;35m' -BLUE='\033[0;34m' -YELLOW='\033[0;32m' -GREEN='\033[0;32m' -RED='\033[0;31m' -NC='\033[0;0m' +ENVSETUP_BRANCH='stable' # -- System -- # Skyreach in which system looks for packages @@ -136,6 +128,14 @@ TESTER_MAX_INSTANCES= # separate values with commas TESTER_IGNORED_TESTS= +# -- Constants -- +CYAN='\033[0;36m' +PURPLE='\033[0;35m' +BLUE='\033[0;34m' +YELLOW='\033[0;32m' +GREEN='\033[0;32m' +RED='\033[0;31m' +NC='\033[0;0m' # Upstream configuration override # ------------------------------- diff --git a/launcher.sh b/launcher.sh index 246e7f2f9302142159b4f8cd9ec8acc10fffa629..b7fb6234e347370aa322bf7e694983be52d3968c 100755 --- a/launcher.sh +++ b/launcher.sh @@ -23,6 +23,8 @@ echo "$version" # envsetup action calls init() { + python3 /root/envsetup/update_envsetup.py + python3 /root/envsetup/envsetup.py 31 python3 /root/envsetup/envsetup.py 32 python3 /root/envsetup/envsetup.py 33 diff --git a/tester.py b/tester.py index 8e3276bc8da5bf65ffc078fd0a98eec43b424292..6724ab8c8980477523622bbae9908f8accd7d149 100755 --- a/tester.py +++ b/tester.py @@ -230,18 +230,14 @@ class Tester(): log('Instances that will be tested: %s.' % ', '.join(ms_users)) # Clone testing suite ms_path = os.path.join(path, 'ms-testing-suite') - if os.path.exists(ms_path): - log('Updating ms-testing-suite in "%s".' % ms_path) - os.chdir(ms_path) - # TODO: - # subprocess.check_call(['git', 'checkout', 'stable']) - subprocess.check_call(['git', 'pull', '--recurse-submodules']) - subprocess.check_call(['git', 'submodule', 'init']) - subprocess.check_call(['git', 'submodule', 'update', '--init', '--recursive']) - os.chdir(self.root_dir) - else: + if not os.path.exists(ms_path): log('Cloning ms-testing-suite in "%s".' % ms_path) - subprocess.check_call(['git', 'clone', 'https://panel.ubicast.eu/git/mediaserver/ms-testing-suite.git', ms_path]) + subprocess.check_call(['git', 'clone', '--recursive', 'https://panel.ubicast.eu/git/mediaserver/ms-testing-suite.git', ms_path]) + log('Updating ms-testing-suite in "%s".' % ms_path) + os.chdir(ms_path) + subprocess.check_call(['git', 'pull', '--recurse-submodules']) + subprocess.check_call(['git', 'submodule', 'update', '--init', '--recursive']) + os.chdir(self.root_dir) # Add tests to list wowza_dir = '/usr/local/WowzaStreamingEngine' etc_lives_conf = '/etc/mediaserver/lives_conf.py' diff --git a/update_envsetup.py b/update_envsetup.py index 5532477a09170db2376286e2ee310bf24664c3d1..3ebe71741d127fb59cb6b039ec97041ea3ac32c1 100755 --- a/update_envsetup.py +++ b/update_envsetup.py @@ -4,12 +4,18 @@ import os import subprocess import sys +import utils + if __name__ == '__main__': + branch = utils.get_conf('ENVSETUP_BRANCH') or 'stable' os.chdir(os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))) sys.stdout.write('Updating envsetup: ') sys.stdout.flush() subprocess.call('find . -name *.pyc -type f -delete', shell=True) subprocess.call('find . -name __pycache__ -type d -delete', shell=True) - subprocess.call('git pull', shell=True) + if branch: + subprocess.check_call(['git', 'checkout', branch]) + subprocess.check_call(['git', 'pull', '--recurse-submodules']) + subprocess.check_call(['git', 'submodule', 'update', '--init', '--recursive']) subprocess.call('find . -type d -empty -delete', shell=True)