pipeline {
agent any
stages {
stage('Configure') {
steps {
echo 'Configuring Cmake...'
mdkir build
cd build
ls
}
stage('Build') {
echo 'Building..'
stage('Test') {
echo 'Testing..'
stage('Deploy') {
echo 'Deploying....'