Update Jenkinsfile

This commit is contained in:
Brady-Malott 2023-02-26 18:06:50 -05:00 committed by GitHub
parent c170691e66
commit bf1b0db721
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

@ -7,6 +7,12 @@ pipeline {
sh 'docker build -t microblog:latest .'
}
}
stage('Selenium Tests') {
steps {
echo 'Running Selenium Tests...'
//sh 'python3 selenium.py'
}
}
stage('Deploy') {
steps {
// Stop running microblog container
@ -17,12 +23,6 @@ pipeline {
sh 'docker image prune --filter "label!=org.opencontainers.image.vendor=Jenkins project"'
}
}
stage('Selenium Tests') {
steps {
echo 'Running Selenium Tests...'
//sh 'python3 selenium.py'
}
}
}
// Post always runs even if the pipeline fails