Skip to content

Commit

Permalink
Improve sanity checks with commands and lib
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoldeman committed May 31, 2024
1 parent 39f9bdf commit af756c8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions easybuild/easyconfigs/p/PRRTE/PRRTE-3.0.5-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ configopts += ' --with-hwloc=$EBROOTHWLOC --with-pmix=$EBROOTPMIX'

buildopts = 'V=1'

local_binaries = ['prte', 'prte_info', 'prterun', 'prun', 'pterm']

sanity_check_paths = {
'files': ['bin/prte', 'bin/prte_info', 'bin/prterun', 'bin/prun', 'bin/pterm'],
'dirs': ['etc', 'include', 'lib', 'share']
'files': ['bin/%s' % x for x in local_binaries] + ['lib/libprrte.%s' % SHLIB_EXT],
'dirs': ['etc', 'include', 'share']
}

sanity_check_commands = ['%s --version' % x for x in local_binaries]

moduleclass = 'lib'

0 comments on commit af756c8

Please sign in to comment.