mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 11:00:43 +00:00
23 lines
254 B
YAML
23 lines
254 B
YAML
|
stages:
|
||
|
- build
|
||
|
- test
|
||
|
- deploy
|
||
|
|
||
|
image: ruby:2.2
|
||
|
|
||
|
job 1:
|
||
|
stage: build
|
||
|
script: make build dependencies
|
||
|
|
||
|
job 2:
|
||
|
stage: build
|
||
|
script: make build artifacts
|
||
|
|
||
|
job 3:
|
||
|
stage: test
|
||
|
script: make test
|
||
|
|
||
|
job 4:
|
||
|
stage: deploy
|
||
|
script: make deploy
|