Skip to content
Snippets Groups Projects
Commit 06e289fd authored by Lucas De Marchi's avatar Lucas De Marchi
Browse files

dim: Fix dim_branches


The amount of repos/branches is not restricted to the ones in drm-intel
and drm-misc anymore. Now there are topic branches on drm repo and also
the drm-xe repo. Use wildcard matches to list anything under drm-* repos
and any topic branch, even those on drm repo.

One main difference is that now `dim create-workdir all` will really
checkout all topic branches. Users may be advised to checkout only what
it's interesting for them.

Signed-off-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
parent 414601bf
No related branches found
No related tags found
1 merge request!25dim changes for xe
...@@ -146,7 +146,7 @@ function read_integration_config ...@@ -146,7 +146,7 @@ function read_integration_config
for conf in "${drm_tip_config[@]}"; do for conf in "${drm_tip_config[@]}"; do
local repo branch override local repo branch override
read -r repo branch override <<< $conf read -r repo branch override <<< $conf
if [[ "$repo" = "drm-intel" || "$repo" = "drm-misc" ]]; then if [[ $repo = drm-* ]] || [[ $branch = topic/* ]]; then
dim_branches="$dim_branches $branch" dim_branches="$dim_branches $branch"
fi fi
done done
......
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