Skip to content
Snippets Groups Projects
Commit bde63317 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

Merge branch 'maybe_fix_bazel_for_AMue' into 'master'

fix[bazel]: build fix by passing through LD_LIBRARY_PATH

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!387
parents 9c9bed04 6a271c80
No related branches found
No related tags found
2 merge requests!389create new experimental release,!387fix[bazel]: build fix by passing through LD_LIBRARY_PATH
Pipeline #24189 passed with stage
in 12 hours, 59 minutes, and 12 seconds
......@@ -532,7 +532,10 @@ class Bazel(Package):
# Increase verbosity of explanation,
" --verbose_explanations"
# Show (formatted) subcommands being executed
" --subcommands=pretty_print" " --jobs={0}".format(make_jobs),
" --subcommands=pretty_print"
# expose LD_LIBRARY_PATH (to fix protoc runtime error during build)
" --action_env=LD_LIBRARY_PATH"
" --jobs={0}".format(make_jobs),
)
@run_before("install")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment