Revert to YAML

This commit is contained in:
Danila Fedorin 2020-02-11 14:25:44 -08:00
parent 12725500a8
commit a5b84bab69
2 changed files with 10 additions and 23 deletions

View File

@ -1,23 +0,0 @@
local compiler_versions = [
"04", "05", "06", "07", "08", "09"
];
local test_compiler_version(version) = [
"cd code/compiler/%(version)",
"mkdir build && cd build",
"cd .."
];
[
{
"kind": "pipeline",
"type": "docker",
"name": "default",
"steps": [
{
"name": "test-compiler",
"image": "gcc",
"commands": std.flatMap(test_compiler_version, compiler_versions)
}
]
}
]

10
.drone.yml Normal file
View File

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