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