Craft your forge, Build your project, Grow your community freely
1---
2pluginName: Hop
3pluginBaseline: Some hops make beer. Our Hop makes bare metal calls.
4homepage: /app/plugins/hop/
5docpage: /app/plugins/hop/doc.html
6changelog: /app/plugins/hop/CHANGELOG.html
7---
8 9# Documentation
1011## Configuration
1213```yaml
14configuration:
15exec:
16artifacts:
17 - releases/gitroot-linux-amd64 # artifacts can only be inside your app directory18build: "container/Containerfile"# only used in container executor, docker image to use, can be local git file (Containerfile or Dockerfile) or distant docker.io/bash:5.3.319cache:
20 - key: home # each cache need to have a key, change key to empty cache21path: /home/ # where the cache should materialized in the job22readOnly: false23cmds: # commands to execute24 - args:
25 - build
26cmd: make
27 - args:
28 - test
29cmd: make
30env: # set env in job31 - SERVER_PORT=3232
32 - SERVER_PORT_HTTP=4242
33reportStats: true# if true will report cpu/memory of the job34pipelinesToWebDir: "/pipelines"# where to put logs, artifacts in web35```