An open API service indexing awesome lists of open source software.

https://github.com/screwdriver-cd/workflow-parser

Calculate a directed graph workflow based on a pipeline config
https://github.com/screwdriver-cd/workflow-parser

parser

Last synced: 8 months ago
JSON representation

Calculate a directed graph workflow based on a pipeline config

Awesome Lists containing this project

README

          

# Workflow Parser
[![Version][npm-image]][npm-url] ![Downloads][downloads-image] [![Build Status][status-image]][status-url] [![Open Issues][issues-image]][issues-url] ![License][license-image]

> Parses and converts pipeline configuration into a workflow graph

## Usage

```bash
npm install screwdriver-workflow-parser
```

```
const { getWorkflow, getNextJobs, hasCycle } = require('screwdriver-workflow-parser');

// Calculate the directed graph workflow from a pipeline config (and parse legacy workflows)
const workflowGraph = getWorkflow(pipelineConfig, { useLegacy: true });

/*
{
nodes: [{ name: '~pr'}, { name: '~commit'}, { name: 'main' }],
edges: [{ src: '~pr', dest: 'main'}, { src: '~commit', dest: 'main'}]
}
*/

// Get a list of job names to start as a result of a commit event, e.g. [ 'a', 'b' ]
const commitJobsToTrigger = getNextJobs(workflowGraph, { trigger: '~commit' });

// Get a list of job names to start as a result of a pull-request event, e.g. [ 'PR-123:a' ]
const prJobsToTrigger = getNextJobs(workflowGraph, { trigger: '~pr', prNum: 123 });

// Check to see if a given workflow graph has a loop in it. A -> B -> A
if (hasCycle(workflowGraph)) {
console.error('Graph contains a loop.');
}
```

## Testing

```bash
npm test
```

## License

Code licensed under the BSD 3-Clause license. See LICENSE file for terms.

[npm-image]: https://img.shields.io/npm/v/screwdriver-workflow-parser.svg
[npm-url]: https://npmjs.org/package/screwdriver-workflow-parser
[downloads-image]: https://img.shields.io/npm/dt/screwdriver-workflow-parser.svg
[license-image]: https://img.shields.io/npm/l/screwdriver-workflow-parser.svg
[issues-image]: https://img.shields.io/github/issues/screwdriver-cd/workflow-parser.svg
[issues-url]: https://github.com/screwdriver-cd/workflow-parser/issues
[status-image]: https://cd.screwdriver.cd/pipelines/529/badge
[status-url]: https://cd.screwdriver.cd/pipelines/529