Newer
Older
Code / Jenkinsfile
@John Ryland John Ryland on 6 Nov 2019 379 bytes build from pipeline

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                echo 'Building..'
		sh('./build.sh')
            }
        }
        stage('Test') {
            steps {
                echo 'Testing..'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying....'
            }
        }
    }
}