From acd38d572cfc58fb955bdf944b60039fedcb725e Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Fri, 9 Aug 2019 10:45:29 -0700 Subject: [PATCH] remove windows jsonnet --- .drone.windows.jsonnet | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .drone.windows.jsonnet diff --git a/.drone.windows.jsonnet b/.drone.windows.jsonnet deleted file mode 100644 index 23475af..0000000 --- a/.drone.windows.jsonnet +++ /dev/null @@ -1,33 +0,0 @@ -local pipeline = import 'pipeline.libsonnet'; - -[ - pipeline.test('windows', 'amd64', '1803'), - - pipeline.build('docker', 'windows', 'amd64', '1803'), - pipeline.build('docker', 'windows', 'amd64', '1809'), - pipeline.notifications('docker', 'windows', 'amd64', '1809', [ - 'windows-1803', - 'windows-1809' - ]), - - pipeline.build('gcr', 'windows', 'amd64', '1803'), - pipeline.build('gcr', 'windows', 'amd64', '1809'), - pipeline.notifications('gcr', 'windows', 'amd64', '1809', [ - 'windows-1803', - 'windows-1809' - ]), - - pipeline.build('acr', 'windows', 'amd64', '1803'), - pipeline.build('acr', 'windows', 'amd64', '1809'), - pipeline.notifications('acr', 'windows', 'amd64', '1809', [ - 'windows-1803', - 'windows-1809' - ]), - - pipeline.build('ecr', 'windows', 'amd64', '1803'), - pipeline.build('ecr', 'windows', 'amd64', '1809'), - pipeline.notifications('ecr', 'windows', 'amd64', '1809', [ - 'windows-1803', - 'windows-1809' - ]), -]