-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: Bazel-7.4.1-GCCcore-13.3.0.eb
- Loading branch information
1 parent
395a982
commit 8e62eda
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
easybuild/easyconfigs/b/Bazel/Bazel-7.4.1-GCCcore-13.3.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name = 'Bazel' | ||
version = '7.4.1' | ||
|
||
homepage = 'https://bazel.io/' | ||
description = """Bazel is a build tool that builds code quickly and reliably. | ||
It is used to build the majority of Google's software.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
|
||
source_urls = ['https://github.com/bazelbuild/%(namelower)s/releases/download/%(version)s'] | ||
sources = ['%(namelower)s-%(version)s-dist.zip'] | ||
checksums = ['83386618bc489f4da36266ef2620ec64a526c686cf07041332caff7c953afaf5'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.42'), | ||
('Python', '3.12.3'), | ||
('Zip', '3.0'), | ||
] | ||
dependencies = [ | ||
('Java', '21.0.2', '', SYSTEM), | ||
] | ||
|
||
runtest = True | ||
testopts = "-- //examples/cpp:hello-success_test //examples/py/... //examples/py_native:test //examples/shell/..." | ||
|
||
moduleclass = 'devel' |