From f92ecf55bc2dba609a54b872780a3e8f92cb227e Mon Sep 17 00:00:00 2001 From: Robbie Blaine Date: Fri, 16 Aug 2024 14:17:33 +0200 Subject: [PATCH] Enable `linux/386` docker build --- .github/workflows/nigthly.yml | 2 +- .github/workflows/publish.yml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nigthly.yml b/.github/workflows/nigthly.yml index e83c0eb4a3..c1abf95153 100644 --- a/.github/workflows/nigthly.yml +++ b/.github/workflows/nigthly.yml @@ -51,4 +51,4 @@ jobs: tag: ["nightly-${{needs.setup_and_check_pub.outputs.date}}", nightly] with: tag: ${{ matrix.tag }} - platforms: "linux/amd64,linux/arm64" + platforms: "linux/amd64,linux/arm64,linux/386" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 055ca62df7..91483c1618 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ on: platforms: description: 'Platforms - Comma separated list of the platforms to support.' required: true - default: linux/amd64,linux/arm64 + default: linux/amd64,linux/arm64,linux/386 type: string ref: description: 'Optional - The branch, tag or SHA to checkout.' @@ -26,16 +26,14 @@ on: type: string platforms: required: true - default: linux/amd64,linux/arm64 + default: linux/amd64,linux/arm64,linux/386 type: string ref: required: false type: string env: - # linux/386 platform support has been disabled pending a permanent fix for https://github.com/hyperledger/aries-cloudagent-python/issues/2124 - # PLATFORMS: ${{ inputs.platforms || 'linux/amd64,linux/arm64,linux/386' }} - PLATFORMS: ${{ inputs.platforms || 'linux/amd64,linux/arm64' }} + PLATFORMS: ${{ inputs.platforms || 'linux/amd64,linux/arm64,linux/386' }} jobs: publish-image: