Delete 'src/Jenkinsfile (2)'

This commit is contained in:
2021-11-16 03:17:15 +00:00
parent 2370b22d8d
commit 28ec3d98f4
-26
View File
@@ -1,26 +0,0 @@
pipeline {
agent { label 'Ubuntu18-openjdk1.8'}
environment {
CI = 'true'
}
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
stage('Deliver') {
steps {
sh './jenkins/scripts/deliver.sh'
input message: 'Finished using the web site? (Click "Proceed" to continue)'
sh './jenkins/scripts/kill.sh'
}
}
}
}