diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-20 15:52:22 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-20 17:48:46 +0200 |
commit | be5a8912ff6521a3f23bb44b879074f56b785b85 (patch) | |
tree | cd4f66138163ae8cf74d4973727d0829dcaa5fd4 /test | |
parent | 745b353b107993ea4b81131182469b3565acb010 (diff) | |
download | justbuild-be5a8912ff6521a3f23bb44b879074f56b785b85.tar.gz |
["utils/remote-execution", "CC test"]: honor LINT
Diffstat (limited to 'test')
-rw-r--r-- | test/utils/remote_execution/RULES | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/test/utils/remote_execution/RULES b/test/utils/remote_execution/RULES index 02f2272d..9b0ce1e9 100644 --- a/test/utils/remote_execution/RULES +++ b/test/utils/remote_execution/RULES @@ -25,6 +25,7 @@ , "TEST_ENV" , "CC_TEST_LAUNCHER" , "TEST_COMPATIBLE_REMOTE" + , "LINT" ] , "implicit": { "defaults": [["@", "rules", "CC", "defaults"]] @@ -120,6 +121,8 @@ , "config_transitions": { "defaults": [{"type": "CALL_EXPRESSION", "name": "host transition"}] , "private-deps": [{"type": "CALL_EXPRESSION", "name": "host transition"}] + , "private-hdrs": [{"type": "CALL_EXPRESSION", "name": "host transition"}] + , "srcs": [{"type": "CALL_EXPRESSION", "name": "host transition"}] , "data": [{"type": "CALL_EXPRESSION", "name": "host transition"}] , "just": [{"type": "CALL_EXPRESSION", "name": "host transition"}] , "runner": [{"type": "CALL_EXPRESSION", "name": "host transition"}] @@ -140,12 +143,16 @@ , "$1": {"type": "FIELD", "name": "stage"} } ] + , ["host-trans", {"type": "CALL_EXPRESSION", "name": "host transition"}] , [ "srcs" , { "type": "to_subdir" , "subdir": {"type": "var", "name": "stage"} , "$1": { "type": "let*" - , "bindings": [["fieldname", "srcs"]] + , "bindings": + [ ["fieldname", "srcs"] + , ["transition", {"type": "var", "name": "host-trans"}] + ] , "body": {"type": "CALL_EXPRESSION", "name": "artifacts"} } } @@ -155,12 +162,14 @@ , "subdir": {"type": "var", "name": "stage"} , "$1": { "type": "let*" - , "bindings": [["fieldname", "private-hdrs"]] + , "bindings": + [ ["fieldname", "private-hdrs"] + , ["transition", {"type": "var", "name": "host-trans"}] + ] , "body": {"type": "CALL_EXPRESSION", "name": "artifacts"} } } ] - , ["host-trans", {"type": "CALL_EXPRESSION", "name": "host transition"}] , ["defaults-transition", {"type": "var", "name": "host-trans"}] , ["deps-transition", {"type": "var", "name": "host-trans"}] , ["deps-fieldnames", ["private-deps", "defaults"]] |