Run builds in series
Since they I/O bound off of the same hardware, and sometimes also CPU bound when compiling things, running them in parallel only slows things down. Closes: #28
This commit is contained in:
parent
39eb09456b
commit
29faf1e86c
2 changed files with 20 additions and 21 deletions
|
@ -16,12 +16,10 @@
|
|||
|
||||
{% macro jobs() -%}
|
||||
- name: rust-xwin
|
||||
serial: true
|
||||
plan:
|
||||
- get: repo
|
||||
trigger: true
|
||||
- in_parallel:
|
||||
fail_fast: true
|
||||
steps:
|
||||
- task: build-rust-xwin
|
||||
file: repo/tasks/build-image.yml
|
||||
privileged: true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{% macro jobs(job) -%}
|
||||
- name: {{ job.name }}
|
||||
serial: true
|
||||
plan:
|
||||
- get: repo
|
||||
trigger: true
|
||||
|
|
Loading…
Add table
Reference in a new issue