03daa8603f
Fedora 34 reached End of Life on 7th June 2022: https://docs.fedoraproject.org/en-US/releases/eol/ The subsequent commit will bump the minimum required Bats version to 1.5.0, which is absent from Fedora 34. https://github.com/containers/toolbox/pull/1081
77 lines
1.9 KiB
YAML
77 lines
1.9 KiB
YAML
---
|
|
- job:
|
|
name: unit-test
|
|
description: Run Toolbox's unit tests declared in Meson
|
|
timeout: 600
|
|
files: ['playbooks/*', 'src/*', 'meson.build', 'meson_options.txt', 'meson_post_install.py', '.zuul.yaml']
|
|
nodeset:
|
|
nodes:
|
|
- name: ci-node-36
|
|
label: cloud-fedora-36
|
|
pre-run: playbooks/setup-env.yaml
|
|
run: playbooks/unit-test.yaml
|
|
|
|
- job:
|
|
name: system-test-fedora-rawhide
|
|
description: Run Toolbox's system tests in Fedora Rawhide
|
|
timeout: 2700
|
|
files: &system_test_files [
|
|
'data/*',
|
|
'playbooks/*',
|
|
'profile.d/*',
|
|
'src/*',
|
|
'test/*',
|
|
'meson.build',
|
|
'meson_options.txt',
|
|
'meson_post_install.py',
|
|
'.zuul.yaml',
|
|
]
|
|
nodeset:
|
|
nodes:
|
|
- name: ci-node-rawhide
|
|
label: cloud-fedora-rawhide
|
|
pre-run: playbooks/setup-env.yaml
|
|
run: playbooks/system-test.yaml
|
|
|
|
- job:
|
|
name: system-test-fedora-36
|
|
description: Run Toolbx's system tests in Fedora 36
|
|
timeout: 1200
|
|
files: *system_test_files
|
|
nodeset:
|
|
nodes:
|
|
- name: ci-node-36
|
|
label: cloud-fedora-36
|
|
pre-run: playbooks/setup-env.yaml
|
|
run: playbooks/system-test.yaml
|
|
|
|
- job:
|
|
name: system-test-fedora-35
|
|
description: Run Toolbox's system tests in Fedora 35
|
|
timeout: 1200
|
|
files: *system_test_files
|
|
nodeset:
|
|
nodes:
|
|
- name: ci-node-35
|
|
label: cloud-fedora-35
|
|
pre-run: playbooks/setup-env.yaml
|
|
run: playbooks/system-test.yaml
|
|
|
|
- project:
|
|
periodic:
|
|
jobs:
|
|
- system-test-fedora-rawhide
|
|
- system-test-fedora-36
|
|
- system-test-fedora-35
|
|
check:
|
|
jobs:
|
|
- unit-test
|
|
- system-test-fedora-rawhide
|
|
- system-test-fedora-36
|
|
- system-test-fedora-35
|
|
gate:
|
|
jobs:
|
|
- unit-test
|
|
- system-test-fedora-rawhide
|
|
- system-test-fedora-36
|
|
- system-test-fedora-35
|