mieszkania5/Jenkinsfile

22 lines
393 B
Plaintext
Raw Normal View History

2023-10-24 17:51:47 +02:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2023-10-24 18:06:48 +02:00
sh 'apt install black'
sh 'black ./'
2023-10-24 17:51:47 +02:00
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}