-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathMODULE.bazel
More file actions
216 lines (186 loc) · 7.52 KB
/
Copy pathMODULE.bazel
File metadata and controls
216 lines (186 loc) · 7.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# *******************************************************************************
# Copyright (c) 2026 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
# *******************************************************************************
module(name = "score_lifecycle")
# Bazel global rules
bazel_dep(name = "bazel_skylib", version = "1.9.0")
bazel_dep(name = "rules_pkg", version = "1.2.0")
bazel_dep(name = "rules_python", version = "1.8.5")
bazel_dep(name = "rules_rust", version = "0.68.2-score")
bazel_dep(name = "rules_cc", version = "0.2.17")
bazel_dep(name = "rules_oci", version = "2.3.0")
bazel_dep(name = "rules_shell", version = "0.6.1")
bazel_dep(name = "aspect_rules_lint", version = "2.5.0", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "8.5.1", dev_dependency = True)
bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "download_utils", version = "1.2.2")
bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True)
# S-CORE process rules
bazel_dep(name = "score_docs_as_code", version = "8.1.2")
bazel_dep(name = "score_tooling", version = "2.2.1")
bazel_dep(name = "score_process_description", version = "2.1.2")
bazel_dep(name = "score_platform", version = "0.7.2")
bazel_dep(name = "score_bazel_platforms", version = "1.1.0", dev_dependency = True)
bazel_dep(name = "score_rust_policies", version = "0.0.5", dev_dependency = True)
bazel_dep(name = "score_cpp_policies", version = "0.1.1", dev_dependency = True)
bazel_dep(name = "score_devcontainer", version = "1.11.0", dev_dependency = True)
## Configure the C++ toolchain
bazel_dep(name = "score_bazel_cpp_toolchains", version = "1.0.3", dev_dependency = True)
gcc = use_extension("@score_bazel_cpp_toolchains//extensions:gcc.bzl", "gcc", dev_dependency = True)
# Compiler-warning features are owned by score_cpp_policies
_WARNING_ENABLED_FEATURES = [
"@score_cpp_policies//warnings/gcc/features:minimal_warnings",
"@score_cpp_policies//warnings/gcc/features:warnings_as_errors",
]
_WARNING_KNOWN_FEATURES = [
"@score_cpp_policies//warnings/gcc/features:strict_warnings",
"@score_cpp_policies//warnings/gcc/features:all_wall_warnings",
]
gcc.toolchain(
name = "score_gcc_x86_64_toolchain",
extra_enabled_features = _WARNING_ENABLED_FEATURES,
extra_known_features = _WARNING_KNOWN_FEATURES,
target_cpu = "x86_64",
target_os = "linux",
use_default_package = True,
version = "12.2.0",
)
gcc.toolchain(
name = "score_gcc_aarch64_toolchain",
extra_enabled_features = _WARNING_ENABLED_FEATURES,
extra_known_features = _WARNING_KNOWN_FEATURES,
target_cpu = "aarch64",
target_os = "linux",
use_default_package = True,
version = "12.2.0",
)
gcc.toolchain(
name = "score_qcc_x86_64_toolchain",
extra_enabled_features = _WARNING_ENABLED_FEATURES,
extra_known_features = _WARNING_KNOWN_FEATURES,
sdp_version = "8.0.4",
target_cpu = "x86_64",
target_os = "qnx",
use_default_package = True,
version = "12.2.0",
)
gcc.toolchain(
name = "score_qcc_aarch64_toolchain",
extra_enabled_features = _WARNING_ENABLED_FEATURES,
extra_known_features = _WARNING_KNOWN_FEATURES,
sdp_version = "8.0.4",
target_cpu = "aarch64",
target_os = "qnx",
use_default_package = True,
version = "12.2.0",
)
use_repo(
gcc,
"score_gcc_aarch64_toolchain",
"score_gcc_x86_64_toolchain",
"score_qcc_aarch64_toolchain",
"score_qcc_aarch64_toolchain_pkg",
"score_qcc_x86_64_toolchain",
"score_qcc_x86_64_toolchain_pkg",
)
# LLVM toolchain (used for clang-format, clang-tidy and LLVM source-based coverage)
bazel_dep(name = "toolchains_llvm", version = "1.8.0", dev_dependency = True)
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm", dev_dependency = True)
llvm.toolchain(
cxx_standard = {"": "c++17"},
extra_known_features = [
"@score_tooling//coverage:enable_llvm_coverage_for_death_tests",
],
llvm_version = "22.1.7",
stdlib = {"": "stdc++"},
)
use_repo(llvm, "llvm_toolchain", "llvm_toolchain_llvm")
# UTs on QNX
bazel_dep(name = "score_qnx_unit_tests", version = "0.2.0", dev_dependency = True)
# TODO: drop this override once a version > 0.2.0 is published.
# Latest release (0.2.0) does not support CLI args when running tests on QNX
git_override(
module_name = "score_qnx_unit_tests",
commit = "79cc6598268d1f21cbfa75da4993facccf01edbd",
remote = "https://github.com/eclipse-score/qnx_unit_tests.git",
)
bazel_dep(name = "score_rules_imagefs", version = "0.1.0", dev_dependency = True)
imagefs = use_extension("@score_rules_imagefs//extensions:imagefs.bzl", "imagefs", dev_dependency = True)
imagefs.toolchain(
name = "score_qnx_x86_64_ifs_toolchain",
sdp_to_import = "@score_qcc_x86_64_toolchain_pkg",
sdp_version = "8.0.0",
target_cpu = "x86_64",
target_os = "qnx",
type = "ifs",
)
imagefs.toolchain(
name = "score_qnx_aarch64_ifs_toolchain",
sdp_to_import = "@score_qcc_aarch64_toolchain_pkg",
sdp_version = "8.0.0",
target_cpu = "aarch64",
target_os = "qnx",
type = "ifs",
)
use_repo(imagefs, "score_qnx_aarch64_ifs_toolchain", "score_qnx_x86_64_ifs_toolchain")
## Rust Toolchain
bazel_dep(name = "score_toolchains_rust", version = "0.10.0", dev_dependency = True)
# S-CORE crates
bazel_dep(name = "score_crates", version = "0.0.10")
git_override(
module_name = "score_crates",
commit = "4656dda8f04a3d88c8089f63111195840cfbd9e3",
remote = "https://github.com/eclipse-score/score-crates.git",
)
deb = use_repo_rule("@download_utils//download/deb:defs.bzl", "download_deb")
deb(
name = "acl-deb",
build = "//externals/acl:acl.BUILD",
urls = ["https://archive.ubuntu.com/ubuntu/pool/main/a/acl/libacl1-dev_2.2.52-3build1_amd64.deb"],
visibility = ["//visibility:public"],
)
deb(
name = "acl-deb-aarch64",
build = "//externals/acl:acl.BUILD",
urls = ["https://launchpadlibrarian.net/581258948/libacl1-dev_2.3.1-1_arm64.deb"],
visibility = ["//visibility:public"],
)
PYTHON_VERSION = "3.12"
python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)
python.toolchain(
is_default = True,
python_version = PYTHON_VERSION,
)
# Python pip dependencies
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
pip.parse(
hub_name = "score_lifecycle_pip",
python_version = PYTHON_VERSION,
requirements_lock = "//:requirements_lock.txt",
)
use_repo(pip, "score_lifecycle_pip")
bazel_dep(name = "score_itf", version = "0.5.0", dev_dependency = True)
oci = use_extension("@rules_oci//oci:extensions.bzl", "oci", dev_dependency = True)
oci.pull(
name = "debian-test-runtime",
digest = "sha256:f06537653ac770703bc45b4b113475bd402f451e85223f0f2837acbf89ab020a",
image = "index.docker.io/library/debian",
platforms = ["linux/amd64"],
tag = "bookworm-slim",
)
use_repo(oci, "debian-test-runtime", "debian-test-runtime_linux_amd64")
bazel_dep(name = "score_baselibs", version = "0.2.12")
bazel_dep(name = "score_communication", version = "0.4.0")
# Needed to fix bazel mod errors
# see https://github.com/grpc/grpc-java/issues/12165
bazel_dep(name = "grpc-java", version = "1.78.0")