Merge pull request #1301 from nilxam/ignore_hdf5_serial

Ignore hdf5:serial
This commit is contained in:
Dominique Leuenberger 2017-12-18 09:37:02 +01:00 committed by GitHub
commit 09707c01a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View File

@ -21,6 +21,8 @@ job install name screen
job install name alsa-utils
job install name yast2-nfs-client
job install name kexec-tools
job install name firewalld
job install name xfsprogs
job lock name bash-completion
job lock name bash-doc

View File

@ -47,6 +47,8 @@ job install name inkscape
job install name sddm
job install name gnome-music
job install name kexec-tools
job install name firewalld
job install name xfsprogs
job lock name gtk2-branding-upstream
job lock name gdm-branding-upstream

View File

@ -268,7 +268,7 @@ 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 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 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;
}