Browse Source

gitignore package-lock

master
flashlan 4 years ago
parent
commit
5732a3a609
  1. 1
      Jenkinsfile
  2. 26
      src/Jenkinsfile (2)

1
Jenkinsfile

@ -7,6 +7,7 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'npm install -g npm@latest'
sh 'npm install'
}
}

26
src/Jenkinsfile (2)

@ -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'
}
}
}
}
Loading…
Cancel
Save