diff options
-rw-r--r-- | etc/taskcluster/decision_task.py | 8 | ||||
-rw-r--r-- | etc/taskcluster/windows/first-boot.ps1 | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 2a2a2ea4505..dd637859eaa 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -131,7 +131,7 @@ def linux_wpt(): total_chunks = 2 for i in range(total_chunks): this_chunk = i + 1 - wpt_chunk(release_build_task, total_chunks, this_chunk, extra=(this_chunk == 1)) + wpt_chunk(release_build_task, total_chunks, this_chunk) def linux_release_build(): @@ -150,7 +150,7 @@ def linux_release_build(): ) -def wpt_chunk(release_build_task, total_chunks, this_chunk, extra): +def wpt_chunk(release_build_task, total_chunks, this_chunk): name = "Linux x64: WPT chunk %s / %s" % (this_chunk, total_chunks) script = """ ./mach test-wpt \ @@ -171,7 +171,7 @@ def wpt_chunk(release_build_task, total_chunks, this_chunk, extra): # IndexError: list index out of range # File "/repo/python/servo/testing_commands.py", line 533, in filter_intermittents # pull_request = int(last_merge.split(' ')[4][1:]) - if extra: + if this_chunk == 1: name += " + extra" script += """ ./mach test-wpt-failure @@ -295,4 +295,4 @@ CONFIG.repacked_msi_files_expire_in = build_dependencies_artifacts_expire_in if __name__ == "__main__": - main(task_for=os.environ["TASK_FOR"])
\ No newline at end of file + main(task_for=os.environ["TASK_FOR"]) diff --git a/etc/taskcluster/windows/first-boot.ps1 b/etc/taskcluster/windows/first-boot.ps1 index bbf1cdb6449..6c3106d7a0c 100644 --- a/etc/taskcluster/windows/first-boot.ps1 +++ b/etc/taskcluster/windows/first-boot.ps1 @@ -78,4 +78,4 @@ Start-Process C:\vs_buildtools.exe -ArgumentList (` # Now shutdown, in preparation for creating an image -shutdown -s
\ No newline at end of file +shutdown -s |