-
Notifications
You must be signed in to change notification settings - Fork 25
Fixes persistency test_scenarios integration in reference_integration #228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
e6e6490
7e14ecb
ea41063
eede0ab
c26079f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,18 +77,45 @@ bazel_dep(name = "google_benchmark", version = "1.9.4", dev_dependency = True) | |
| bazel_dep(name = "platforms", version = "1.0.0") | ||
|
|
||
| ## S-CORE bazel registry | ||
| bazel_dep(name = "score_baselibs", version = "0.1.2") | ||
| bazel_dep(name = "score_baselibs", version = "0.1.3") | ||
| git_override( | ||
| module_name = "score_baselibs", | ||
| commit = "99d49637a2199f33a71edc479d39970e3bdcb271", | ||
| remote = "https://github.com/eclipse-score/baselibs.git", | ||
| ) | ||
|
|
||
| bazel_dep(name = "score_logging", version = "0.0.3") | ||
| git_override( | ||
| module_name = "score_logging", | ||
| commit = "2b3e56cf12cf582d0c0a235cad3d1d9b9fc1e494", # latest main | ||
| remote = "https://github.com/eclipse-score/logging.git", | ||
| ) | ||
|
|
||
| # TRLC required transitively via: score_logging -> score_communication -> trlc | ||
| bazel_dep(name = "trlc", version = "0.0.0") | ||
| git_override( | ||
| module_name = "trlc", | ||
| commit = "650b51a47264a4f232b3341f473527710fc32669", # trlc-2.0.2 release | ||
| remote = "https://github.com/bmw-software-engineering/trlc.git", | ||
| ) | ||
|
|
||
| bazel_dep(name = "score_bazel_platforms", version = "0.0.4") | ||
|
|
||
| # Override score_docs_as_code to resolve compatibility level conflicts between dependencies | ||
| bazel_dep(name = "score_docs_as_code", version = "3.0.0", dev_dependency = True) | ||
| single_version_override( | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we need single_version_override here?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. moreover it cannot be used. The only place where it should be used is reference_integration repo |
||
| module_name = "score_docs_as_code", | ||
| version = "3.0.0", | ||
| ) | ||
|
|
||
| bazel_dep(name = "score_platform", version = "0.5.3", dev_dependency = True) | ||
| bazel_dep(name = "score_process", version = "1.4.0", dev_dependency = True) | ||
|
|
||
| bazel_dep(name = "score_python_basics", version = "0.3.4") | ||
| bazel_dep(name = "score_tooling", version = "1.1.0") | ||
|
|
||
| # ToDo: implicit dependencies for score_tooling, but needed directly here?? | ||
| bazel_dep(name = "aspect_rules_lint", version = "2.0.0") | ||
| bazel_dep(name = "aspect_rules_lint", version = "1.10.2") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why was the version downgraded? |
||
| bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2") | ||
|
|
||
| ## temporary overrides / tools | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,6 +27,7 @@ cc_binary( | |
| visibility = ["//visibility:public"], | ||
| deps = [ | ||
| "//src/cpp/src:kvs_cpp", | ||
| "@score_logging//score/mw/log", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is this required for test_scenarios ? I dont see any tests added . It is becuase the kremotelogging=false is removed? |
||
| "@score_test_scenarios//test_scenarios_cpp", | ||
| ], | ||
| ) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dev_dependency? I dont want every repo that uses persistency to be obliged to load
trlcespecially when it is not using it