summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClaes Hallström <hallstrom.claes@gmail.com>2023-07-20 22:42:25 +0200
committerClaes Hallström <hallstrom.claes@gmail.com>2023-07-20 22:42:25 +0200
commitd776508e63594cbb97ec4e5ac2be2923d35ca651 (patch)
tree73e30fb2d3ed3fd801d621d4f80b6a669914490b /.github
parent3c2bbd42924e6d17ba48e1641fd556814c15d44c (diff)
Readd support for arm/v6 to docker image
The support for arm/v6 was dropped since the build was based on python, which did not have support for arm/v6, but now they are based on alpine.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c77b6281..be17203f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,8 +8,7 @@ env:
DEFAULT_DOCKER_IMAGE: nicolargo/glances
NODE_ENV: ${{ (contains('refs/heads/master', github.ref) || startsWith(github.ref, 'refs/tags/v')) && 'prod' || 'dev' }}
PUSH_BRANCH: ${{ 'refs/heads/develop' == github.ref || 'refs/heads/master' == github.ref || startsWith(github.ref, 'refs/tags/v') }}
- # linux/arm/v7 (drop support for v6) support following issue - See issue #2120
- DOCKER_PLATFORMS: linux/amd64,linux/arm/v7,linux/arm64,linux/386
+ DOCKER_PLATFORMS: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/386
# Ubuntu image only support linux/amd64 and linux/arm64 - See issue #2185
DOCKER_PLATFORMS_UBUNTU: linux/amd64,linux/arm64