Skip to content

Commit 749a0a0

Browse files
committed
Added Jenkinsfile
1 parent 18529c6 commit 749a0a0

1 file changed

Lines changed: 20 additions & 4 deletions

File tree

Jenkinsfile

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
11
pipeline {
2-
agent { label 'clever-ci'}
2+
agent {
3+
node {
4+
label 'clever-ci'
5+
}
6+
7+
}
38
stages {
49
stage('build') {
5-
steps {
6-
sh 'nvm list'
10+
parallel {
11+
stage('build') {
12+
steps {
13+
sh 'echo "build"'
14+
}
15+
}
16+
17+
stage('test') {
18+
steps {
19+
sh 'echo "test"'
20+
}
21+
}
22+
723
}
824
}
925

1026
}
11-
}
27+
}

0 commit comments

Comments
 (0)