I hereby claim:
- I am ndeloof on github.
- I am ndeloof (https://keybase.io/ndeloof) on keybase.
- I have a public key whose fingerprint is 06A1 945C 671F 0530 F392 1434 9858 809D 6F8F 6E7E
To claim this, I am signing this object:
| apiVersion: tekton.dev/v1alpha1 | |
| kind: Task | |
| metadata: | |
| name: say-hello | |
| spec: | |
| inputs: | |
| params: | |
| - name: who | |
| description: who to say hello | |
| default: kitty |
| apiVersion: tekton.dev/v1alpha1 | |
| kind: Task | |
| metadata: | |
| name: say-hello | |
| spec: | |
| inputs: | |
| params: | |
| - name: who | |
| description: who to say hello | |
| default: kitty |
| Exception in thread "main" java.util.ServiceConfigurationError: jenkins.bootstrap.BootLogic: Provider hudson.WebAppMain could not be instantiated | |
| at java.util.ServiceLoader.fail(ServiceLoader.java:232) | |
| at java.util.ServiceLoader.access$100(ServiceLoader.java:185) | |
| at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:384) | |
| at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404) | |
| at java.util.ServiceLoader$1.next(ServiceLoader.java:480) | |
| at jenkins.bootstrap.Bootstrap.loadBootLogics(Bootstrap.java:209) | |
| at jenkins.bootstrap.Bootstrap.contextInitialized(Bootstrap.java:106) | |
| at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:890) | |
| at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:532) |
I hereby claim:
To claim this, I am signing this object:
| --- | |
| - build: # stage ('build') { ... | |
| # define the docker image used to run the build | |
| # an implicit volume for current project's git working copy is mounted | |
| image: maven:3.3-jdk-8 | |
| # set environment variables, use $$ for credentials injection, as used by http://readme.drone.io/usage/secrets/ | |
| environment: | |
| - foo: bar |
| stage 'build' { | |
| withDocker(image: 'node_js:4.4', | |
| environment: [foo: 'bar'], | |
| volumes: [node_cache: '/node_modules'], | |
| commands: """ | |
| npm install | |
| npm test | |
| ... | |
| """, |
| mount -t tmpfs -o size=512M tmpfs /var/lib/docker |
| modprobe zram | |
| echo $((1024*1024*1024)) > /sys/block/zram0/disksize | |
| mkswap /dev/zram0 | |
| swapon -p 10 /dev/zram0 |
| FROM jenkins | |
| COPY plugins.txt /usr/share/jenkins/plugins.txt | |
| RUN /usr/local/bin/plugins.sh /usr/share/jenkins/plugins.txt |
| @Describable("publicname") | |
| public class Foo { | |
| @DataBound private String bar; | |
| } |