I hereby claim:
- I am childnode on github.
- I am childnode (https://keybase.io/childnode) on keybase.
- I have a public key ASB5Io_7olQZZLAw0W5EQDfjqOhC9jdIYfj55j3xK4q6-go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| User-agent: * | |
| # from CONF-8749 | |
| Crawl-delay: 5 # per http://en.wikipedia.org/wiki/Robots.txt#Nonstandard_extensions, sets number of seconds to wait between requests to 5 seconds. may not work | |
| Request-rate: 1/5 # per http://en.wikipedia.org/wiki/Robots.txt#Extended_Standard, maximum rate is one page every 5 seconds. may not work | |
| # DISABLED FOR NOW Visit-time: 0600-0845 # per http://en.wikipedia.org/wiki/Robots.txt#Extended_Standard, only visit between 6:00 AM and 8:45 AM UT (GMT), may not work | |
| ## Confluence exclusions | |
| Disallow: /plugins/viewsource | |
| Disallow: /pages/viewpreviousversions.action |
| // inspired by https://discuss.gradle.org/t/how-to-run-defaults-tasks-of-sub-project-rather-than-default-tasks-of-root-project/6575/6 | |
| task runDefaultTasks { | |
| gradle.projectsEvaluated { | |
| subprojects.each { subproject -> | |
| //println subproject.path | |
| subproject.defaultTasks.each { | |
| //println subproject.path + ":" + it | |
| dependsOn subproject.path + ":" + it | |
| } |
| apply plugin: 'groovy' | |
| sourceSets { | |
| main { | |
| groovy.srcDirs += "${rootProject.rootDir}/../src/main/groovy" | |
| } | |
| } |
| function git-guilty() { ./gradlew :test; [ "$?" != 0 ] && git reset --hard HEAD^ && git-guilty; } | |
| git-guilty | |
| echo "========== LAST WORKING =========" | |
| git describe | |
| git log -1 HEAD | |
| echo "========== SUSPICIOUS PATCH =========" | |
| git log -1 -p --stat HEAD@{1} | |
| git reset --hard origin/HEAD |
| FROM jenkins/jenkins:${jenkinsVersion} | |
| ## note base : https://github.com/jenkinsci/docker/blob/master/Dockerfile | |
| … | |
| ## Manual install Plugins | |
| COPY myPlugin.hpi /usr/share/jenkins/ref/plugins/myPlugin.jpi | |
| RUN unzip -qqt "/usr/share/jenkins/ref/plugins/myPlugin.jpi" | |
| … |
| .Python | |
| bin/ | |
| include/ | |
| lib/ | |
| pip-selfcheck.json | |
| playbook.retry |