X-Git-Url: http://git.onelab.eu/?p=build.git;a=blobdiff_plain;f=modules.update;h=fc3c448abd1d5ac5f99c73e89345cd300b05e093;hp=8630c487adf3b5aeadb59edbbadd6d73e2dbd7d3;hb=1f4f80e0c7dc71ef79614227c195139a56d1421e;hpb=16bf4a613beb13546c8837ed16804d4c381d3358 diff --git a/modules.update b/modules.update index 8630c487..fc3c448a 100755 --- a/modules.update +++ b/modules.update @@ -3,11 +3,13 @@ # redirect this into modules.list to get it refreshed # -# keep centos5 as the default target rather than - more accurate - f8 b/c we need more of our modules on centos -fcdistro=centos5 +# run on several distros as we filter out duplicates anyways +# centos5 has more of our modules, but skips sfa +fcdistros="f14 f16" -( \ - make stage1=true PLDISTRO=planetlab PLDISTROTAGS=planetlab-tags.mk DISTRONAME=${fcdistro} module-tools ; \ - make stage1=true PLDISTRO=planetlab PLDISTROTAGS=planetlab-k27-tags.mk DISTRONAME=${fcdistro} module-tools ; \ - make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-tags.mk DISTRONAME=${fcdistro} module-tools ; \ -) | sort -u | grep -v '^build$' +( for fcdistro in $fcdistros; do + make stage1=true PLDISTRO=onelab PLDISTROTAGS=onelab-tags.mk DISTRONAME=${fcdistro} module-tools ; + make stage1=true PLDISTRO=lxc PLDISTROTAGS=lxc-tags.mk DISTRONAME=${fcdistro} module-tools ; + done 2>/dev/null ; + echo tests +) | sort -uf | grep -v '^build$'