From a56ab9609a3327ee376d08a422af35dcb29bd0a8 Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Sun, 19 Mar 2023 19:29:01 +0200 Subject: [PATCH] Add Windows as a supported OS Signed-off-by: Gabriel Adrian Samfira --- runner/types.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runner/types.go b/runner/types.go index 8acd4e6d..3f132730 100644 --- a/runner/types.go +++ b/runner/types.go @@ -27,7 +27,8 @@ const ( var ( // Linux only for now. Will add Windows soon. (famous last words?) supportedOSType map[params.OSType]struct{} = map[params.OSType]struct{}{ - params.Linux: {}, + params.Linux: {}, + params.Windows: {}, } // These are the architectures that Github supports.