ci: Perform dependency resolution for all variants
This commit is contained in:
parent
5a9096b17e
commit
1b7d4e8e52
1 changed files with 9 additions and 1 deletions
|
@ -2,10 +2,18 @@
|
||||||
tasks:
|
tasks:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
package:
|
package:
|
||||||
name: ['just', 'python3-pyyaml']
|
name:
|
||||||
|
- 'just'
|
||||||
|
- 'ostree'
|
||||||
|
- 'python3-pyyaml'
|
||||||
|
- 'rpm-ostree'
|
||||||
state: present
|
state: present
|
||||||
become: yes
|
become: yes
|
||||||
- name: Validate manifests and scripts syntax
|
- name: Validate manifests and scripts syntax
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
chdir: "{{ zuul.project.src_dir }}"
|
chdir: "{{ zuul.project.src_dir }}"
|
||||||
cmd: just validate
|
cmd: just validate
|
||||||
|
- name: Perform dependency resolution for all variants
|
||||||
|
ansible.builtin.command:
|
||||||
|
chdir: "{{ zuul.project.src_dir }}"
|
||||||
|
cmd: just compose-dry-run
|
||||||
|
|
Loading…
Reference in a new issue