@@ -1129,11 +1129,11 @@ def distsnap_buildfactory(platform, channel_label):
1129
1129
elif 'cross' in platform :
1130
1130
command .append ('dist' )
1131
1131
else :
1132
- command .append ('distcheck' )
1132
+ command .append ('dist' ) # FIXME (brson) distcheck takes too long as formulated
1133
1133
# Don't run check because distcheck is going to do it all again
1134
1134
f = make_and_check_buildfactory (False , False , "win" in platform , False )
1135
1135
f .addStep (Compile (env = CommandEnv (),
1136
- name = 'distcheck ' ,
1136
+ name = 'dist-not-check ' ,
1137
1137
command = command ,
1138
1138
timeout = compile_timeout ,
1139
1139
interruptSignal = "TERM" ,
@@ -1164,6 +1164,11 @@ def distsnap_buildfactory(platform, channel_label):
1164
1164
1165
1165
# All remaining steps happen on the buildmaster
1166
1166
1167
+ # List the files we just got
1168
+ ls_cmd = "ls " + local_dist_platform_dir
1169
+ f .addStep (MasterShellCommand (name = "list artifacts" ,
1170
+ command = ["sh" , "-c" , ls_cmd ]))
1171
+
1167
1172
# If we're not packaging as well then this platform is just producing std or
1168
1173
# cross artifacts, so delete everything related to the host platform.
1169
1174
if platform not in packaging_platforms :
@@ -1174,6 +1179,11 @@ def distsnap_buildfactory(platform, channel_label):
1174
1179
f .addStep (MasterShellCommand (name = "remove " + host + " artifacts" ,
1175
1180
command = ["sh" , "-c" , clean_cmd ]))
1176
1181
1182
+ # List the files we still got
1183
+ ls_cmd = "ls " + local_dist_platform_dir
1184
+ f .addStep (MasterShellCommand (name = "list artifacts" ,
1185
+ command = ["sh" , "-c" , ls_cmd ]))
1186
+
1177
1187
# Add the commit-id file to indicate which commit this is
1178
1188
# for. This will be checked by the DistSync buildstep later to
1179
1189
# determine when to upload everything at once.
0 commit comments