ci-test/ci/validate.yaml

70 lines
2.4 KiB
YAML
Raw Normal View History

2024-03-01 18:32:37 +00:00
- hosts: all
tasks:
- name: Upgrade all packages
ansible.builtin.dnf:
name: "*"
state: latest
become: true
2024-03-01 18:32:37 +00:00
- name: Install dependencies
package:
name:
- 'jq'
- 'just'
- 'ostree'
- 'python3-pyyaml'
- 'rpm-ostree'
- 'selinux-policy-targeted'
state: present
2024-03-01 18:37:01 +00:00
become: true
2024-03-01 18:32:37 +00:00
- name: Validate manifests and scripts syntax
ansible.builtin.command:
chdir: "{{ zuul.project.src_dir }}"
cmd: just validate
- name: Verify that the comps and manifests are synced
ansible.builtin.shell:
chdir: "{{ zuul.project.src_dir }}"
cmd: "just validate comps-sync-check && touch .zuulci.comps"
# Still run the next step if this one fails
ignore_errors: true
- name: Perform dependency resolution for Silverblue
ansible.builtin.shell:
chdir: "{{ zuul.project.src_dir }}"
cmd: "just compose-dry-run silverblue && touch .zuulci.silverblue"
# Still run the next step if this one fails
ignore_errors: true
- name: Perform dependency resolution for Kinoite
ansible.builtin.shell:
chdir: "{{ zuul.project.src_dir }}"
cmd: "just compose-dry-run kinoite && touch .zuulci.kinoite"
# Still run the next step if this one fails
ignore_errors: true
- name: Perform dependency resolution for Sway Atomic
ansible.builtin.shell:
2024-03-01 18:32:37 +00:00
chdir: "{{ zuul.project.src_dir }}"
2024-06-11 13:19:53 +00:00
cmd: "just compose-dry-run sway-atomic && touch .zuulci.sway-atomic"
# Still run the next step if this one fails
ignore_errors: true
- name: Perform dependency resolution for Budgie Atomic
ansible.builtin.shell:
chdir: "{{ zuul.project.src_dir }}"
2024-06-11 13:19:53 +00:00
cmd: "just compose-dry-run budgie-atomic && touch .zuulci.budgie-atomic"
# Still run the next step if this one fails
ignore_errors: true
2024-03-01 18:32:37 +00:00
- name: Compose the base variant
ansible.builtin.command:
chdir: "{{ zuul.project.src_dir }}"
2024-06-11 13:19:53 +00:00
cmd: just compose-legacy base-atomic
- name: Check if any previous dependency resolution steps failed
ansible.builtin.shell:
chdir: "{{ zuul.project.src_dir }}"
2024-06-11 13:19:53 +00:00
cmd: "[[ -f .zuulci.comps ]] && [[ -f .zuulci.silverblue ]] && [[ -f .zuulci.kinoite ]] && [[ -f .zuulci.sway-atomic ]] && [[ -f .zuulci.budgie-atomic ]]"