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

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                echo 'Building..'
		./build.sh
		//  export PATH=/home/jryland/CrossCompilers/osxcross/target/bin:$PATH
		//  make
            }
        }
        stage('Test') {
            steps {
                echo 'Testing..'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying....'
            }
        }
    }
}