From 4213b50ff6d05b8cea76c9dd380ce36a54102e24 Mon Sep 17 00:00:00 2001 From: Hana Watson Date: Wed, 1 Nov 2023 16:29:34 +0000 Subject: [PATCH] Remove cos to stop amazonlinux2 workflow terminating early --- pkg/operatingsystem/resolver/resolver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operatingsystem/resolver/resolver.go b/pkg/operatingsystem/resolver/resolver.go index 6a8d882..61d7a3d 100644 --- a/pkg/operatingsystem/resolver/resolver.go +++ b/pkg/operatingsystem/resolver/resolver.go @@ -12,7 +12,7 @@ import ( // OperatingSystems represents the available operating systems to use and their constructors. var OperatingSystems = map[string]func(*docker.Client) operatingsystem.OperatingSystem{ amazonlinux2.Name: amazonlinux2.NewAmazonLinux2, - cos.Name: cos.NewCos, + //cos.Name: cos.NewCos, } // OperatingSystem resolves the given operatingsystem name to an implementation of operatingsystem.OperatingSystem