Commit 389d036d authored by Serdar TURKEL's avatar Serdar TURKEL

test

parent e7b7924d
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' sh 'echo "Hello World"'
} sh '''
} echo "Multiline shell steps works too"
stage('Test') { ls -lah
steps { '''
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment