Skip to content

Commit

Permalink
Merge pull request os-autoinst#18151 from JRivrain/remove_bsc#1194917
Browse files Browse the repository at this point in the history
Remove workaround for bsc1194917
  • Loading branch information
lemon-suse authored Nov 22, 2023
2 parents 34f5015 + b3bb037 commit 409ac33
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/services/hpcpackage_remain.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ sub list_pkg {
sub install_pkg {
my $version = get_var('HDDVERSION');
# Install all 'library wrappers' (packages matching -hpc, not having a version number with '_' after their name)
record_soft_failure("bsc#1194917 - openQA test fails : nothing provides 'gcc9' needed by the to be installed gnu9-compilers-hpc-devel-1.4-3.14.3.noarch");
my $module_list_p = script_output q[zypper search -r SLE-Module-HPC] . $version . q[-Pool -r SLE-Module-HPC] . $version . q[-Updates | cut -d '|' -f 2 | sed -e 's/ *//g' | grep -E '.*-hpc.*' | grep -vE 'system|module|suse' | grep -vE 'gnu9|gnu10|gnu11' | grep -vE '.*_[[:digit:]]+_[[:digit:]]+.*gnu|.*_[[:digit:]]+_[[:digit:]]+.*-hpc' | grep -vE '.*-static$' | grep -vE '.*hpc-macros.*'], proceed_on_failure => 1, timeout => 180;
my $module_list_p = script_output q[zypper search -r SLE-Module-HPC] . $version . q[-Pool -r SLE-Module-HPC] . $version . q[-Updates | cut -d '|' -f 2 | sed -e 's/ *//g' | grep -E '.*-hpc.*' | grep -vE 'system|module|suse' | grep -vE '.*_[[:digit:]]+_[[:digit:]]+.*gnu|.*_[[:digit:]]+_[[:digit:]]+.*-hpc' | grep -vE '.*-static$' | grep -vE '.*hpc-macros.*'], proceed_on_failure => 1, timeout => 180;
my @pkginstall = split('\n', $module_list_p);
# on x86 zypper will print out the Shell debug information, we need exclude it.
@pkginstall = grep { !/LMOD_SH_DBG_ON/ } @pkginstall;
Expand Down

0 comments on commit 409ac33

Please sign in to comment.