Skip to content

Commit

Permalink
can't ping from docker
Browse files Browse the repository at this point in the history
  • Loading branch information
rsandell committed May 18, 2017
1 parent b08d793 commit 75b686e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ pipeline {
docker.build('latest', 'docker/gulp/').inside {
unstash 'ws'
//sh 'gulp test'
sh 'ping -w 15 8.8.8.8' //Can't make those tests work - doing something else for simplicity
sh '''#!/bin/bash
for i in {0..15}
do
echo "$i"
sleep 1
done
'''
}
}
}
Expand Down

0 comments on commit 75b686e

Please sign in to comment.