Skip to content

Commit

Permalink
Create Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
syedameenabrar authored Feb 26, 2024
1 parent 9f1a1ff commit 83a7e94
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
pipeline {
agent any
stages {
stage('Static Analysis') {
steps {
echo 'Run the static analysis to the code'
}
}
stage('Compile') {
steps {
echo 'Compile the source code'
}
}
stage('Security Check') {
steps {
echo 'Run the security check against the application'
}
}
stage('Run Unit Tests') {
steps {
echo 'Run unit tests from the source code'
}
}
stage('Run Integration Tests') {
steps {
echo 'Run only crucial integration tests from the source code'
}
}
stage('Publish Artifacts') {
steps {
echo 'Save the assemblies generated from the compilation'
}
}
}
}

0 comments on commit 83a7e94

Please sign in to comment.