From bfdcb9799edef12f7bdf7b52f6a777c6b9aeea1c Mon Sep 17 00:00:00 2001 From: Bjoern Walk Date: Fri, 4 Aug 2023 09:22:01 +0200 Subject: [PATCH] Add support for linux/s390x architecture This commit enables platform support for the `linux/s390x` architecture in the CI pipeline. Signed-off-by: Bjoern Walk --- .chloggen/s390x-platform-enablement.yaml | 16 ++++++++++++++++ .github/workflows/build-and-test.yml | 2 ++ 2 files changed, 18 insertions(+) create mode 100755 .chloggen/s390x-platform-enablement.yaml diff --git a/.chloggen/s390x-platform-enablement.yaml b/.chloggen/s390x-platform-enablement.yaml new file mode 100755 index 00000000000..1e7a88eb69c --- /dev/null +++ b/.chloggen/s390x-platform-enablement.yaml @@ -0,0 +1,16 @@ +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement + +# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver) +component: supported platforms + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Add `linux/s390x` architecture to cross build tests in CI + +# One or more tracking issues or pull requests related to the change +issues: [8213] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 003daa73189..de7ff468eb0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -238,6 +238,8 @@ jobs: - goos: linux goarch: arm goarm: 7 + - goos: linux + goarch: s390x - goos: windows goarch: 386 - goos: windows