-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue-ref: see #7
- Loading branch information
Showing
6 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
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,22 @@ | ||
.. | ||
# ******************************************************************************* | ||
# Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# ******************************************************************************* | ||
Feature documentation | ||
===================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:glob: | ||
|
||
integration/index.rst |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,68 @@ | ||
.. | ||
# ******************************************************************************* | ||
# Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# ******************************************************************************* | ||
Integration | ||
########### | ||
|
||
Documentation | ||
************* | ||
|
||
Description | ||
=========== | ||
|
||
Bazel is the build/test infrastructure of choice for the Score project. | ||
Overall integration and build should be realized using available rules | ||
or custom rules developed for the project. This means that the following | ||
should be integrated with bazel: | ||
|
||
- code build | ||
- documentation build | ||
- test runs | ||
- binary runs | ||
- external tooling | ||
|
||
Running external tooling outside of Bazel should be limited as much as | ||
possible, in order to streamline the development with simple ``bazel | ||
{build,test,run}`` command, across multiple repositories and multiple | ||
languages. | ||
|
||
All dependencies should be managed thru mechanisms available in Bazel. | ||
Dependency to host system should be limited as much as possible. | ||
|
||
Each repository should register an entry in the bazel-registry for | ||
dependency management between different modules. | ||
|
||
High level integration dependency | ||
|
||
|score_high_level_dependencies| | ||
|
||
Mandatory repositories: | ||
|
||
- bazel_registry (implicit dependency, stores version of all modules) | ||
- process_description (Score development process description) | ||
- score (requirements and architecture) | ||
- reference_integration (brings all parts together) | ||
|
||
Optional repositories: | ||
|
||
- repositories containing implementation of particular features | ||
|
||
References | ||
========== | ||
|
||
- Bazel: https://bazel.build/ | ||
- Bazel modules: https://bazel.build/external/module | ||
- Bazel registries: https://bazel.build/external/registry | ||
|
||
.. |score_high_level_dependencies| image:: _assets/score_high_level_dependencies.png |
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
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
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