Screwdriver.yaml Configuration Parser
Node module for validating and parsing screwdriver.yaml
configurations
- Validates a
screwdriver.yaml
for structural and functional specification - Outputs the pipeline's workflow
- Generates a list of jobs to execute, including:
- build permutations
- environment variables to set
- steps to execute
- container image to use
YAML
workflow:
- publish
shared:
environment:
NODE_ENV: test
jobs:
main:
image: node:{{NODE_VERSION}}
matrix:
NODE_VERSION: [4,5,6]
steps:
- init: npm install
- test: npm test
publish:
environment:
NODE_TAG: latest
image: node:4
steps:
- bump: npm run bump
- publish: npm publish --tag $NODE_TAG
- tag: git push origin --tags
Usage
npm install screwdriver-config-parser
Parse in Node.js:
const parser = require('screwdriver-config-parser');
parser(fs.readFileSync('screwdriver.yaml'), (err, pipeline) => {
});
Or for usage on the command line see USAGE.md.
Testing
npm test
License
Code licensed under the BSD 3-Clause license. See LICENSE file for terms.