mieszkania5/Jenkinsfile

24 lines
519 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') {
2023-10-24 18:18:02 +02:00
when { expression { return fileExists ('CenaMieszkaniaDesign.py') } }
2023-10-24 17:50:54 +02:00
steps {
2023-10-24 18:18:02 +02:00
echo "file exists"
2023-10-24 17:50:54 +02:00
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}