Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
40
Issue boards
Milestones
Wiki
Code
Merge requests
29
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!504
fix(bazel): build on ju{suf,reca}
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(bazel): build on ju{suf,reca}
fix_bazel_jsc
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Eric Müller
requested to merge
fix_bazel_jsc
into
master
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
445df397
1 year ago
master (base)
and
latest version
latest version
01c24df8
1 commit,
1 year ago
version 1
445df397
1 commit,
1 year ago
1 file
+
8
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
packages/bazel/package.py
+
8
−
3
Options
@@ -439,7 +439,9 @@ class Bazel(Package):
patch
(
"
cc_configure-0.3.0.patch
"
,
when
=
"
@0.3:0.4
"
)
# Set CC and CXX
patch
(
"
compile-0.29.patch
"
,
when
=
"
@0.29:
"
)
# begin EBRAINS: modified, bring upstream after checking since when this is breaking the build
patch
(
"
compile-0.29.patch
"
,
when
=
"
@0.29:5.3
"
)
# end EBRAINS
patch
(
"
compile-0.21.patch
"
,
when
=
"
@0.21:0.28
"
)
patch
(
"
compile-0.16.patch
"
,
when
=
"
@0.16:0.20
"
)
patch
(
"
compile-0.13.patch
"
,
when
=
"
@0.13:0.15
"
)
@@ -527,8 +529,11 @@ class Bazel(Package):
"
--color=no --host_javabase=@local_jdk//:jdk
"
# Enable verbose output for failures
"
--verbose_failures
"
# expose LD_LIBRARY_PATH (to fix protoc runtime error during build)
"
--action_env=LD_LIBRARY_PATH
"
# begin EBRAINS: modified, bring upstream after checking since when the compile-x.patch is breaking the build
# expose CC and CXX (the spack compiler wrappers)
"
--action_env=CC
"
"
--action_env=CXX
"
# end EBRAINS
"
--jobs={0}
"
.
format
(
make_jobs
),
)