mieszkania5/Jenkinsfile

29 lines
606 B
Plaintext
Raw Normal View History

2023-10-24 17:50:54 +02:00
pipeline {
2023-10-24 17:59:02 +02:00
agent {
docker { image 'node:18.18.2-alpine3.18' }
}
2023-10-24 17:50:54 +02:00
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
2023-10-24 18:11:51 +02:00
if (fileExists('CenaMieszkaniaDesign.py')) {
echo 'Yes'
} else {
echo 'No'
}
2023-10-24 17:50:54 +02:00
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}