1
Fork 0

Compare commits

..

No commits in common. "29faf1e86c2036c42fb1e5ff45f69525a0bc6e83" and "a9bc340f7dc5882c517eff48e2d0ee1dc739ed54" have entirely different histories.

2 changed files with 25 additions and 28 deletions

View file

@ -16,36 +16,36 @@
{% macro jobs() -%} {% macro jobs() -%}
- name: rust-xwin - name: rust-xwin
serial: true
plan: plan:
- get: repo - get: repo
trigger: true trigger: true
- task: build-rust-xwin - in_parallel:
file: repo/tasks/build-image.yml fail_fast: true
privileged: true steps:
vars: - task: build-rust-xwin
context: repo/images/rust-xwin file: repo/tasks/build-image.yml
target: rust-xwin privileged: true
dockerfile: '' vars:
output_mapping: context: repo/images/rust-xwin
image: image-rust-xwin target: rust-xwin
- task: build-rust-xwin-ci dockerfile: ''
file: repo/tasks/build-image.yml output_mapping:
privileged: true image: image-rust-xwin
vars: - task: build-rust-xwin-ci
context: repo/images/rust-xwin file: repo/tasks/build-image.yml
target: rust-xwin-ci privileged: true
dockerfile: '' vars:
output_mapping: context: repo/images/rust-xwin
image: image-rust-xwin-ci target: rust-xwin-ci
dockerfile: ''
output_mapping:
image: image-rust-xwin-ci
- in_parallel: - in_parallel:
steps: steps:
- put: image-rust-xwin - put: image-rust-xwin
inputs: detect params:
params: { image: image-rust-xwin/image.tar } image: image-rust-xwin/image.tar
no_get: true
- put: image-rust-xwin-ci - put: image-rust-xwin-ci
inputs: detect params:
params: { image: image-rust-xwin-ci/image.tar } image: image-rust-xwin-ci/image.tar
no_get: true
{% endmacro %} {% endmacro %}

View file

@ -1,6 +1,5 @@
{% macro jobs(job) -%} {% macro jobs(job) -%}
- name: {{ job.name }} - name: {{ job.name }}
serial: true
plan: plan:
- get: repo - get: repo
trigger: true trigger: true
@ -18,7 +17,5 @@
{%- endfor %} {%- endfor %}
{%- endif %} {%- endif %}
- put: image-{{ job.name }} - put: image-{{ job.name }}
inputs: detect
params: { image: image/image.tar } params: { image: image/image.tar }
no_get: true
{%- endmacro -%} {%- endmacro -%}