From 41ab3ad56a42621cc494807206f4cafedc2f4871 Mon Sep 17 00:00:00 2001 From: Ashley Jeffs Date: Tue, 13 Aug 2024 17:51:32 +0100 Subject: [PATCH 1/2] Disable ockam builds for arm as well --- public/components/ockam/package.go | 2 +- public/components/ockam/windows.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/components/ockam/package.go b/public/components/ockam/package.go index fd893c0d9..a42ebfd2a 100644 --- a/public/components/ockam/package.go +++ b/public/components/ockam/package.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build !windows +//go:build !windows && !arm package ockam diff --git a/public/components/ockam/windows.go b/public/components/ockam/windows.go index 7a9fe9f91..3314d11b3 100644 --- a/public/components/ockam/windows.go +++ b/public/components/ockam/windows.go @@ -12,6 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build windows +//go:build windows || arm package ockam From 494f5f4588383f4c47d28897db55c377cf21dc55 Mon Sep 17 00:00:00 2001 From: Ashley Jeffs Date: Tue, 13 Aug 2024 18:25:54 +0100 Subject: [PATCH 2/2] Disable pulsar on arm32 --- public/components/pulsar/arm_32.go | 17 +++++++++++++++++ public/components/pulsar/package.go | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 public/components/pulsar/arm_32.go diff --git a/public/components/pulsar/arm_32.go b/public/components/pulsar/arm_32.go new file mode 100644 index 000000000..45007cd0e --- /dev/null +++ b/public/components/pulsar/arm_32.go @@ -0,0 +1,17 @@ +// Copyright 2024 Redpanda Data, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//go:build arm + +package pulsar diff --git a/public/components/pulsar/package.go b/public/components/pulsar/package.go index a9050f6d4..02c88f5f3 100644 --- a/public/components/pulsar/package.go +++ b/public/components/pulsar/package.go @@ -12,6 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !arm + package pulsar import (