We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998a172 commit e1cfb37Copy full SHA for e1cfb37
jenkins/Jenkinsfile
@@ -1,10 +1,7 @@
1
pipeline {
2
- agent {
3
- docker {
4
- image 'node:6-alpine'
5
- args '-p 3000:3000'
6
- }
7
+ agent any
+
+ tools {nodejs "node"}
8
environment {
9
CI = 'true'
10
}
@@ -19,12 +16,5 @@ pipeline {
19
16
sh './jenkins/scripts/test.sh'
20
17
21
18
22
- stage('Deliver') {
23
- steps {
24
- sh './jenkins/scripts/deliver.sh'
25
- input message: 'Finished using the web site? (Click "Proceed" to continue)'
26
- sh './jenkins/scripts/kill.sh'
27
28
29
30
0 commit comments