Skip to content

Instantly share code, notes, and snippets.

@rtyler

rtyler/foo.adoc Secret

Last active November 29, 2016 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtyler/0a1453c41864cd469a02b14f54df1732 to your computer and use it in GitHub Desktop.
Save rtyler/0a1453c41864cd469a02b14f54df1732 to your computer and use it in GitHub Desktop.
This is a document


[pipeline]
----
// Script //
node {
    stage('Build') {
      checkout scm
      // Install dependencies
      sh 'npm install'
    }
}

// Declarative //
pipeline {
    agent docker: 'node:6.3'
    stages {
        stage('Build') {
            sh 'npm install'
        }
    }
}
----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment