Update Jenkinsfile

This commit is contained in:
Brady-Malott 2023-02-26 18:10:32 -05:00 committed by GitHub
parent bf1b0db721
commit 18a16c0c02
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,12 +7,6 @@ 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
@ -23,6 +17,12 @@ 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