File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -836,6 +836,7 @@ def __init__(
836
836
self .worker_names = worker_names
837
837
self .post_build_steps = post_build_steps
838
838
self .branch_config_dict = branch_config_dict
839
+ self .outputs_path = outputs_path
839
840
840
841
super ().__init__ (** kwargs )
841
842
@@ -1065,7 +1066,7 @@ def nix_eval_config(
1065
1066
factory .addStep (
1066
1067
NixEvalCommand (
1067
1068
project = project ,
1068
- env = {},
1069
+ env = {"CLICOLOR_FORCE" : "1" },
1069
1070
name = "Evaluate flake" ,
1070
1071
supported_systems = supported_systems ,
1071
1072
job_report_limit = job_report_limit ,
@@ -1149,7 +1150,8 @@ def nix_build_steps(
1149
1150
) -> list [steps .BuildStep ]:
1150
1151
out_steps = [
1151
1152
NixBuildCommand (
1152
- env = {},
1153
+ env = {"CLICOLOR_FORCE" : "1" },
1154
+ usePTY = True ,
1153
1155
name = "Build flake attr" ,
1154
1156
command = [
1155
1157
"nix" ,
Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ class NixEvalJobSuccess(BaseModel):
343
343
neededBuilds : list [str ] # noqa: N815
344
344
neededSubstitutes : list [str ] # noqa: N815
345
345
drvPath : str # noqa: N815
346
- inputDrvs : dict [str , list [str ]] # noqa: N815
346
+ inputDrvs : dict [str , list [str ]] | None = None # noqa: N815
347
347
name : str
348
348
outputs : dict [str , str ]
349
349
system : str
Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ ignore = [
53
53
" ARG001" ,
54
54
" ARG002" ,
55
55
56
- # Missing type annotation for `self` in method
57
- " ANN101" ,
58
56
# Dynamically typed expressions (typing.Any)
59
57
" ANN401" ,
60
58
# Trailing comma missing
Original file line number Diff line number Diff line change 96
96
pkgs . cachix
97
97
pkgs . git
98
98
pkgs . openssh
99
- pkgs . nix
99
+ config . nix . package
100
100
pkgs . bash
101
101
pkgs . coreutils
102
102
cfg . nixEvalJobs . package
You can’t perform that action at this time.
0 commit comments