Compare commits
2 commits
a9bc340f7d
...
29faf1e86c
Author | SHA1 | Date | |
---|---|---|---|
29faf1e86c | |||
39eb09456b |
2 changed files with 28 additions and 25 deletions
|
@ -16,36 +16,36 @@
|
|||
|
||||
{% 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
|
||||
vars:
|
||||
context: repo/images/rust-xwin
|
||||
target: rust-xwin
|
||||
dockerfile: ''
|
||||
output_mapping:
|
||||
image: image-rust-xwin
|
||||
- task: build-rust-xwin-ci
|
||||
file: repo/tasks/build-image.yml
|
||||
privileged: true
|
||||
vars:
|
||||
context: repo/images/rust-xwin
|
||||
target: rust-xwin-ci
|
||||
dockerfile: ''
|
||||
output_mapping:
|
||||
image: image-rust-xwin-ci
|
||||
- task: build-rust-xwin
|
||||
file: repo/tasks/build-image.yml
|
||||
privileged: true
|
||||
vars:
|
||||
context: repo/images/rust-xwin
|
||||
target: rust-xwin
|
||||
dockerfile: ''
|
||||
output_mapping:
|
||||
image: image-rust-xwin
|
||||
- task: build-rust-xwin-ci
|
||||
file: repo/tasks/build-image.yml
|
||||
privileged: true
|
||||
vars:
|
||||
context: repo/images/rust-xwin
|
||||
target: rust-xwin-ci
|
||||
dockerfile: ''
|
||||
output_mapping:
|
||||
image: image-rust-xwin-ci
|
||||
- in_parallel:
|
||||
steps:
|
||||
- put: image-rust-xwin
|
||||
params:
|
||||
image: image-rust-xwin/image.tar
|
||||
inputs: detect
|
||||
params: { image: image-rust-xwin/image.tar }
|
||||
no_get: true
|
||||
- put: image-rust-xwin-ci
|
||||
params:
|
||||
image: image-rust-xwin-ci/image.tar
|
||||
inputs: detect
|
||||
params: { image: image-rust-xwin-ci/image.tar }
|
||||
no_get: true
|
||||
{% endmacro %}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{% macro jobs(job) -%}
|
||||
- name: {{ job.name }}
|
||||
serial: true
|
||||
plan:
|
||||
- get: repo
|
||||
trigger: true
|
||||
|
@ -17,5 +18,7 @@
|
|||
{%- endfor %}
|
||||
{%- endif %}
|
||||
- put: image-{{ job.name }}
|
||||
inputs: detect
|
||||
params: { image: image/image.tar }
|
||||
no_get: true
|
||||
{%- endmacro -%}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue