jenkins-job-builder/tests/yamlparser/fixtures/jobgroups_multi_use.yaml
Sorin Sbarnea c2781e670f
Normalize newlines at end of file
Preparatory move for adopting pre-commit hooks.
Shoudl only remove newlines and spaces at end of files.

Change-Id: Ia33679467c533722b9308f7e7b74be395c926428
Signed-off-by: Sorin Sbarnea <ssbarnea@redhat.com>
2018-06-29 16:07:06 -04:00

34 lines
628 B
YAML

- job-group:
name: multiple_jobs
jobs:
- 'job_one_{version}':
- 'job_two_{version}':
- project:
name: multiple_1.2
version: 1.2
jobs:
- multiple_jobs
- project:
name: multiple_1.3
version: 1.3
jobs:
- multiple_jobs
- job-template:
name: 'job_one_{version}'
builders:
- shell: |
#!/usr/bin/env python
#
print("Doing something cool with python")
- job-template:
name: 'job_two_{version}'
builders:
- shell: |
#!/usr/bin/env python
#
print("Doing something else cool with python")