-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 7.2.4
-
Component/s: Bamboo Specs, Documentation (User)
-
None
-
1
-
Severity 3 - Minor
Issue Summary
The documentation for Bamboo Specs YAML !include tag states that it can be used as a line item level tag but Bamboo gives a generic parsing error.
Steps to Reproduce
- Create YAML file:
version: 2
---
!include 'spec1.yml'
---
- Commit and push the YAML file into Bitbucket and wait for Bamboo to detect the change
Expected Results
Both YAML files are parsed and are imported successfully.
Actual Results
The below exception is thrown in the xxxxxxx.log file:
Bamboo YAML import failed: Unable to parse the YAML file, it may be malformed
Workaround
!include works if it is appended onto another tag for example:
Build: !include 'buildSteps.yml'
Or
Test: !include 'testSteps.yml'