manifest: Fix URL for cerbero deps log
There was a missing 'f' prefix, so the {branch} was not expanded. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/348>
This commit is contained in:
parent
808fc283f3
commit
dec76861ea
2
gitlab/build_manifest.py
Normal file → Executable file
2
gitlab/build_manifest.py
Normal file → Executable file
@ -50,7 +50,7 @@ def git(*args, repository_path='.'):
|
|||||||
def get_cerbero_last_build_info (branch : str):
|
def get_cerbero_last_build_info (branch : str):
|
||||||
# Take the log from slowest build to reduce cache misses, the logs are
|
# Take the log from slowest build to reduce cache misses, the logs are
|
||||||
# uploaded as soon as they are ready.
|
# uploaded as soon as they are ready.
|
||||||
url = "https://artifacts.gstreamer-foundation.net/cerbero-deps/{branch}/cross-ios/universal/cerbero-deps.log"
|
url = f'https://artifacts.gstreamer-foundation.net/cerbero-deps/{branch}/cross-ios/universal/cerbero-deps.log'
|
||||||
deps = [{'commit': None}]
|
deps = [{'commit': None}]
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user