This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function drips(){ | |
| docker ps -q | xargs -n 1 docker inspect --format '{{ .NetworkSettings.IPAddress }} {{ .Name }}' | sed 's/ \// /' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hudson.model.* | |
| import hudson.maven.* | |
| import hudson.tasks.* | |
| import hudson.scm.* | |
| def match_url = "http://svn.mycorp.com/svn/devops" | |
| for(item in Hudson.instance.items) { | |
| hasClaim = false; | |
| if (item.scm instanceof SubversionSCM) |
NewerOlder