We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7115ee commit b33e83eCopy full SHA for b33e83e
1 file changed
CI/Jenkinsfile
@@ -4,15 +4,19 @@ node {
4
stage('Clone repository') {
5
/* Let's make sure we have the repository cloned to our workspace */
6
7
- checkout scm
+ checkout scm CI
8
9
sh 'docker volume create vol-in'
10
sh 'docker volume create vol-out'
11
sh 'docker volume ls'
12
- sh 'docker volume inspect vol-in'
13
- sh 'ls /var/lib/docker/volumes/vol-in/_data'
14
- sh 'touch /var/lib/docker/volumes/vol-in/_data/test.txt'
15
+ // sh 'docker volume inspect vol-in'
+ // sh 'ls $HOME'
+
+ docker.image('node').inside {
16
+ sh 'make test'
17
+ }
18
+ // sh 'touch /var/lib/docker/volumes/vol-in/_data/test.txt'
19
+ // sh 'ls /var/lib/docker/volumes/vol-in/_data'
20
}
21
22
stage('Build image') {
0 commit comments