21 lines
273 B
YAML
21 lines
273 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: Build
|
||
|
image: crystallang/crystal:1.7.1
|
||
|
volumes:
|
||
|
- name: cache
|
||
|
path: /stupid
|
||
|
commands:
|
||
|
- pwd
|
||
|
- shards install
|
||
|
- shards build
|
||
|
|
||
|
volumes:
|
||
|
- name: cache
|
||
|
temp: {}
|
||
|
#
|