Skip automatic rebuild for more pattern packages

This commit is contained in:
Dirk Mueller 2018-02-08 13:22:09 +01:00
parent d1598222d8
commit d540bfa81b

View File

@ -274,7 +274,14 @@ while (<INSTALLCHECK>) {
s,^\s*,,;
# patterns are too spammy and rebuilding doesn't help
next if (grep { $_ eq $cproblem } qw(patterns-openSUSE installation-images:Kubic fftw3:gnu-openmpi-hpc hdf5:mvapich2 hdf5:openmpi hdf5:serial scalapack:gnu-mvapich2-hpc scalapack:gnu-openmpi-hpc python-numpy:gnu-hpc petsc:serial netcdf:serial netcdf:openmpi netcdf:gnu-hpc netcdf:gnu-openmpi-hpc netcdf:gnu-mvapich2-hpc));
next if (grep { $_ eq $cproblem } qw(
patterns-openSUSE patterns-base patterns-haskell
patterns-mate patterns-media patterns-yast
installation-images:Kubic fftw3:gnu-openmpi-hpc hdf5:mvapich2
hdf5:openmpi hdf5:serial scalapack:gnu-mvapich2-hpc
scalapack:gnu-openmpi-hpc python-numpy:gnu-hpc
petsc:serial netcdf:serial netcdf:openmpi netcdf:gnu-hpc
netcdf:gnu-openmpi-hpc netcdf:gnu-mvapich2-hpc));
$problems{$cproblem}->{$_} = 1;
}