From 01fb17858c9bdf157c62f96fdd438e74c060b3b7 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Thu, 3 Feb 2022 19:02:25 -0500 Subject: [PATCH] add s390x and ppc64le --- yaml/linter/linter.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/yaml/linter/linter.go b/yaml/linter/linter.go index ecb99e8..27b35cb 100644 --- a/yaml/linter/linter.go +++ b/yaml/linter/linter.go @@ -27,9 +27,11 @@ var os = map[string]struct{}{ } var arch = map[string]struct{}{ - "arm": struct{}{}, - "arm64": struct{}{}, - "amd64": struct{}{}, + "arm": struct{}{}, + "arm64": struct{}{}, + "amd64": struct{}{}, + "ppc64le": struct{}{}, + "s390x": struct{}{}, } // ErrDuplicateStepName is returned when two Pipeline steps