Module: Mesa Branch: main Commit: 14f59188f67c361870a623028ca6d83b9e860c91 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=14f59188f67c361870a623028ca6d83b9e860c91
Author: Eric Engestrom <e...@igalia.com> Date: Tue Dec 12 11:53:52 2023 +0000 ci/b2c: drop unused --volume and --mount-volume Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26653> --- .gitlab-ci/b2c/generate_b2c.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci/b2c/generate_b2c.py b/.gitlab-ci/b2c/generate_b2c.py index 60194d4d95f..d2f11c40d3a 100755 --- a/.gitlab-ci/b2c/generate_b2c.py +++ b/.gitlab-ci/b2c/generate_b2c.py @@ -85,10 +85,6 @@ values['timeout_retries'] = args.timeout_retries if len(args.job_volume_exclusions) > 0: exclusions = args.job_volume_exclusions.split(",") values['job_volume_exclusions'] = [excl for excl in exclusions if len(excl) > 0] -if args.volume is not None: - values['volumes'] = args.volume -if args.mount_volume is not None: - values['mount_volumes'] = args.mount_volume values['working_dir'] = args.working_dir assert(len(args.local_container) > 0)