Switch to jsonnet syntax
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danila Fedorin 2020-02-11 13:35:36 -08:00
parent b07ea8fe9c
commit d6f53076c0
2 changed files with 15 additions and 10 deletions

15
.drone.jsonnet Normal file
View File

@ -0,0 +1,15 @@
{
"kind": "pipeline",
"type": "docker",
"name": "default",
"steps": [
{
"name": "test-compiler",
"image": "gcc",
"commands": [
"cd code/compiler/09",
"mkdir build && cd build"
]
}
]
}

View File

@ -1,10 +0,0 @@
kind: pipeline
type: docker
name: default
steps:
- name: test-compiler
image: gcc
commands:
- cd code/compiler/09
- mkdir build && cd build