0.0.7 • Published 6 years ago

pipelyne v0.0.7

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Pipelyne

A theoretical experiment to enable writing a CI/CD pipeline in good ol' JavaScript.

Build Status npm version

"Atwood would be proud"

Benefits

  1. Run your pipeline locally
  2. Involve developers by using their favourite language
  3. Run JavaScript instead of Bash
  4. Distribute your pipeline
  5. Write once, export for multiple CI runners

Scope

Base

  • Consumer able to define pipeline stages via .stage() (see usage)
  • Consumer able to define pipeline jobs within a stage via .job() (see usage)
  • Consumer able to load a Pipelyne by specifying a file path URI (see usage)
  • Consumer able to load a an externally defined Pipelyne (see usage)
  • Consumer able to add manually input bash scripts via .run() (see usage)

Variable Management

  • Consumer able to set and read a variable all during runtime (see usage)

File Operations

  • Consumer able to read contents of a file into memory (see usage)

NPM Convenience Methods

  • Consumer able to install NPM dependencies (see usage)
  • Consumer able to publish to NPM (see usage)
  • Consumer able to run an NPM script (see usage)

Exporting from Pipelyne

  • Consumer able to export pipeline to Travis format (see usage)

Future

  • Consumer able to do file manipulation
  • Consumer able to set file ownership permissions
  • Consumer able to set file modification/execution permissions
  • Consumer able to run NPM scripts from package.json
  • Consumer able to publish to DockerHub
  • Consumer able to do a Git push to repository
  • Consumer able to export pipeline to GitLab format

Installation

# with npm < 5
npm i pipelyne --save;
# or with npm > 5
npm i pipelyne;
# or with yarn
yarn add pipelyne

Usage

Importing & Initialisation

import {Pipelyne} from 'pipelyne';

const pipeline = new Pipelyne();

Defining a Stage

pipeline.stage('stage name', {/* stage options */})

Defining a Job

pipeline
  .stage('stage name', {/* stage options */})
  .job('job name', {/* job options */})

Defining a Shell Command

pipeline
  .stage('stage name', {/* stage options */})
  .job('job name', {/* job options */})
  .run('pwd') // runs the `pwd` command

Reading file contents into memory

Runs at run-time, not build-time

pipeline
  .stage('stage name')
  .job('job name')
  .readFile('./path/to/file', 'testvar');

pipeline.getVariable('testvar'); // undefined

pipeline.execute();

pipeline.getVariable('testvar'); // contents of file

Set and read variable at runtime

pipeline
  .stage('stage name')
  .job('job name')
  .readFile('./path/to/file', 'testvar')
  .print('file contents are:', pipeline.ref('testvar'));

pipeline.getVariable('testvar'); // undefined

pipeline.execute(); // observe "file contents are: ..." output

Loading external Pipelyne via path

pipeline.load('./path/to/pipelyne.js');

NOTE: The file at ./path/to/pipelyne.js should export a pipelyne property.

Loading external Pipelyne

pipeline.load(require('./path/to/pipelyne.js').pipelyne);

NOTE: The loaded pipelyne should be an instance of Pipelyne.

Installing NPM Dependencies

pipeline
  .stage('stage')
  .job('job')
  // doing a development dependencies install
  .npm.install()
  // doing a production dependencies install
  .npm.install({production: true});

Publishing to NPM

pipeline
  .stage('stage')
  .job('job')
  .npm.publish();

Running an NPM Script

pipeline
  .stage('stage')
  .job('job')
  // npm run build
  .npm.run('build')
  // npm run test -- --watch
  .npm.run('test', {args: '--watch'});

Exporting Pipelyne for Travis

const fs = require('fs');
const path = require('path');
// ...
// export the pipeline into a file named .travis.yml
fs.writeFileSync(
  path.join(__dirname, './.travis.yml'),
  pipeline.exportFor('travis')
);

API

Pipelyne Instance

A Pipelyne instance exposes the following methods:

MethodParametersDescription
.stage:stageName, :stageOptionsDefines a stage named :stageName. See StageOptions for possible configurations
.job:jobName, :jobOptionsDefines a job named :jobName under the current stage. See JobOptions for possible configurations
.run:script, :commandOptionsDefines a command that runs a shell script containing the script :script. See CommandOptions for possible configurations
.load:pathToPipelyne | :PipelyneLoads an externally defined Pipelyne. When the parameter is a String, the String is taken as the relative path URI to a file exporting a property "pipelyne" which should be a Pipelyne instance. When the parameter is a Pipelyne, the defined stages are automatically loaded into the current Pipelyne.
.npm.publish-Publishes the current NPM package.
.npm.install{:production}Installs the NPM dependencies
.npm.run:command, {:args}Runs the specified NPM command :command. If arguments are needed, use the :arg property in the options object.
.ref:variableNameReturns a function that Pipelyne will call on run to draw from a variable that is set during run-time.
.print...:thingsToPrintPrints the arguments as a string. Arguments are delimited by a space.
.readFile:filePath, :variableNameLoads the file content of the file at :filePath relative to the baseUri and stores it in the variable named :variableName
.getVariable:variableNameReturns the variable with name :variableName. Runs at build-time.
.setVariable:variableName, :valueSets a variable with name :variableName to the value :value. Runs at build-time.
.toString:formatExports the current Pipelyne as a String. See PipelyneStringFormat for possible formats.
.exportFor:ciProviderExports the current Pipelyne in the format of the specified :ciProvider. Currently only Travis is supported. See our pipelyne.js for an example of doing this. The pipelyne.js is executed using the NPM script pipeline. See the package.json

Configuration

RunnableOptions

KeyTypeDescription
allowFailureBooleanDecides whether the Runnable is allowed to fail.
idStringIndiciates the ID of the Runnable. This should be automatically generated by the Runnable's constructor.

StageOptions

Stage options includes all the configurations in RunnableOptions as well as the following:

KeyTypeDescription
nameStringName in normal text. The id of the Stage will be set to a kebab-cased version of the name.

JobOptions

Job options includes all the configurations in RunnableOptions as well as the following:

KeyTypeDescription
nameStringName in normal text. The id of the Job will be set to a kebab-cased version of the name.

CommandOptions

Command options includes all the configurations in RunnableOptions.

No extra configurations are available.

PipelyneStringFormat

This can be one of "json" or "overview".

Contributing

Fork, make changes, push, merge request with master, wait for tests to pass. You know the drill (:

License

This package is licensed under the MIT license.

See the attached license file for details.

ChangeLog

VersionDescription
0.0.7Added .npm convenience methods with .publish(), .install() and .run(:scriptNameFromPackageJson)
0.0.6Added .print to print stuff to the terminal and .ref functions to reference run-time variables
0.0.5Added build-time variable support and file content reading
0.0.4Added test resources to .npmignore and added stuff to package.json
0.0.3Refactored exporter into its own module and enabled setting of set +x and set -x for allowing/disallowing failure in Travis exports
0.0.2Added undocumented exporter and external Pipelyne loading
0.0.1Initial release

Cheers

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago