From b30405756016405c794210ac5bc75f93b66630cd Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 11 Feb 2020 14:02:13 -0800 Subject: [PATCH] Messing around to try get the syntax right --- .drone.jsonnet | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f875be0..5271e20 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -1,11 +1,6 @@ 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", @@ -15,7 +10,7 @@ local test_compiler_version(version) = [ { "name": "test-compiler", "image": "gcc", - "commands": std.flatMap(test_compiler_version, compiler_versions) + "commands": [] } ] }