File tree 2 files changed +5
-6
lines changed 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,11 @@ def _lock_impl(ctx):
145
145
],
146
146
progress_message = "Creating a requirements.txt with uv: %{label}" ,
147
147
env = ctx .attr .env ,
148
+ execution_requirements = {
149
+ # This is to support Google RBE service, PRs to support other RBE
150
+ # providers that do not break the existing ones are welcome.
151
+ "dockerNetwork" : "standard" ,
152
+ },
148
153
)
149
154
150
155
return [
Original file line number Diff line number Diff line change @@ -35,19 +35,13 @@ def lock_test_suite(name):
35
35
"testdata/build_constraints.txt" ,
36
36
"testdata/build_constraints2.txt" ,
37
37
],
38
- # It seems that the CI remote executors for the RBE do not have network
39
- # connectivity due to current CI setup.
40
- tags = ["no-remote-exec" ],
41
38
out = "testdata/requirements.txt" ,
42
39
)
43
40
44
41
lock (
45
42
name = "requirements_new_file" ,
46
43
srcs = ["testdata/requirements.in" ],
47
44
out = "does_not_exist.txt" ,
48
- # It seems that the CI remote executors for the RBE do not have network
49
- # connectivity due to current CI setup.
50
- tags = ["no-remote-exec" ],
51
45
)
52
46
53
47
py_reconfig_test (
You can’t perform that action at this time.
0 commit comments