Messing around to try get the syntax right

This commit is contained in:
Danila Fedorin 2020-02-11 14:02:13 -08:00
parent e5a39d8dfb
commit b304057560
1 changed files with 1 additions and 6 deletions

View File

@ -1,11 +1,6 @@
local compiler_versions = [ local compiler_versions = [
"04", "05", "06", "07", "08", "09" "04", "05", "06", "07", "08", "09"
]; ];
local test_compiler_version(version) = [
"cd code/compiler/%(version)",
"mkdir build && cd build",
"cd .."
];
{ {
"kind": "pipeline", "kind": "pipeline",
@ -15,7 +10,7 @@ local test_compiler_version(version) = [
{ {
"name": "test-compiler", "name": "test-compiler",
"image": "gcc", "image": "gcc",
"commands": std.flatMap(test_compiler_version, compiler_versions) "commands": []
} }
] ]
} }