mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 19:10:38 +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
|
|
|
|
...
|