Some hops make beer. Our Hop makes bare metal calls.
Documentation
Configuration
1configuration:
2exec:
3artifacts:
4 - releases/gitroot-linux-amd64 # artifacts can only be inside your app directory 5build: "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.3 6cache:
7 - key: home # each cache need to have a key, change key to empty cache 8path: /home/ # where the cache should materialized in the job 9readOnly: false10cmds: # commands to execute11 - args:
12 - build
13cmd: make
14 - args:
15 - test
16cmd: make
17env: # set env in job18 - SERVER_PORT=3232
19 - SERVER_PORT_HTTP=4242
20reportStats: true# if true will report cpu/memory of the job21pipelinesToWebDir: "/pipelines"# where to put logs, artifacts in web