mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-14 06:20:39 +00:00
23 lines
249 B
Plaintext
23 lines
249 B
Plaintext
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go build
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: 2000
|
||
|
memory: 100MiB
|
||
|
requests:
|
||
|
cpu: 100
|
||
|
memory: 50MiB
|
||
|
|
||
|
...
|