Skip to content
Snippets Groups Projects
Commit 9097fe04 authored by Dylan Aïssi's avatar Dylan Aïssi
Browse files

updates-upstream-linux: check detected version before trying to use it

Just after adding apertis/v202*-security and -updates branches to be
tracked by the dashboard, the returned version is "None" because the
cache file is not yet updated. This "None" value makes the pipeline
failing with:

Traceback (most recent call last):
  File "/builds/infrastructure/dashboard/./bin/packaging-updates-upstream-linux", line 209, in <module>
    results = compute_linux_updates(data)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/builds/infrastructure/dashboard/./bin/packaging-updates-upstream-linux", line 134, in compute_linux_updates
    process = subprocess.run(
              ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/subprocess.py", line 571, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['git', '-c', 'versionsort.suffix=-', 'ls-remote', '--exit-code', '--tags', '--refs', '--sort=version:refname', 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

', 'vNone*']' returned non-zero exit status 2.

To avoid failures, just skip this branch for this iteration.

Signed-off-by: default avatarDylan Aïssi <dylan.aissi@collabora.com>
parent 672d5924
No related branches found
No related tags found
1 merge request!206updates-upstream-linux: check detected version before trying to use it
......@@ -88,6 +88,9 @@ def compute_linux_updates(data):
logging.debug(f"{release_to_debian=}")
for branch, version in branch_versions.items():
if version is None:
logging.warning(f"{branch}: no version found")
continue
# Fetch the downstream linux version
# If the version is 5.4.134-0~apertis2, the downstream tag is 5.4
downstream_release = release_major_minor(version)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment