ci: Add initial pipeline
This commit is contained in:
parent
6b15ee0684
commit
5bc5a511ca
1 changed files with 21 additions and 0 deletions
21
.drone.yml
Normal file
21
.drone.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: Build
|
||||
image: crystallang/crystal:1.7.1
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /stupid
|
||||
commands:
|
||||
- pwd
|
||||
- apt-get update && apt-get install -y cmake g++
|
||||
- shards install
|
||||
- shards build
|
||||
|
||||
volumes:
|
||||
- name: cache
|
||||
temp: {}
|
||||
#
|
Loading…
Reference in a new issue