Skip to content

Commit

Permalink
add sanity check command for Julia + also set $JULIA_DEPOT_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel authored Jan 14, 2024
1 parent 3d91ae4 commit af6228f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion easybuild/easyconfigs/j/Julia/Julia-1.6.0-linux-aarch64.eb
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,17 @@ sources = ['%(namelower)s-%(version)s%(versionsuffix)s.tar.gz']
checksums = ['0f496972d26cea88151204d03e6bd87702aa1ff983de3b1e4f320c48ef67325f']

sanity_check_paths = {
'files': ['bin/julia', 'include/julia/julia.h', 'lib/libjulia.so'],
'files': ['bin/julia', 'include/julia/julia.h', 'lib/libjulia.%s' % SHLIB_EXT],
'dirs': ['bin', 'etc', 'include', 'lib', 'share']
}

sanity_check_commands = ['julia --help']

modextravars = {
# Use default DEPOT_PATH where first entry is user's depot
# JULIA_DEPOT_PATH must be set to be able to load other JuliaPackage modules and have
# those installations appended to DEPOT_PATH without disabling any of the default paths
'JULIA_DEPOT_PATH': ':',
}

moduleclass = 'lang'

0 comments on commit af6228f

Please sign in to comment.