summaryrefslogtreecommitdiffstats
path: root/tests/yamlparser/fixtures/template_honor_defaults.yaml
blob: e7a72ee486155c501b1bfb7c0d7f6368c6210948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- defaults:
    name: global
    arch: 'i386'

- project:
    name: project-name
    jobs:
        - 'build-{arch}'
        - 'build-{arch}':
            arch: 'amd64'

- job-template:
    name: 'build-{arch}'
    builders:
        - shell: "echo Build arch {arch}."