Skip to content

Commit

Permalink
Drop arm/v7 images
Browse files Browse the repository at this point in the history
The rust build fails here.

See #968
  • Loading branch information
nijel committed Feb 10, 2021
1 parent 35b01a6 commit 75f0742
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/bin/get-buildx-args
Expand Up @@ -6,7 +6,7 @@
if [ -n "$MATRIX_ARCHITECTURE" ] ; then
echo --cache-from "type=local,src=/tmp/.buildx-cache/$MATRIX_ARCHITECTURE"
else
for arch in linux/amd64 linux/arm/v7 linux/arm64 ; do
for arch in linux/amd64 linux/arm64 ; do
echo --cache-from "type=local,src=/tmp/.buildx-cache/$arch"
done
fi
Expand All @@ -23,7 +23,7 @@ if [ "$1" = "load" ] ; then
echo --tag weblate/weblate:test
else
# List of platforms
echo --platform "${MATRIX_ARCHITECTURE:-linux/amd64,linux/arm/v7,linux/arm64}"
echo --platform "${MATRIX_ARCHITECTURE:-linux/amd64,linux/arm64}"
# Enable more platforms in future:
# linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/386,linux/ppc64le,linux/s390x

Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/bleeding.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Build, bleeding, ${{ matrix.architecture }}
strategy:
matrix:
architecture: [linux/arm/v7, linux/arm64]
architecture: [linux/arm64]
env:
MATRIX_ARCHITECTURE: ${{ matrix.architecture }}
steps:
Expand Down Expand Up @@ -250,12 +250,6 @@ jobs:
with:
path: /tmp/.buildx-cache/linux/arm64
key: ${{ runner.os }}-bleeding-${{ github.sha }}-linux/arm64
- name: Cache Docker layers
uses: actions/cache@v2.1.4
id: cache-arm-v7
with:
path: /tmp/.buildx-cache/linux/arm/v7
key: ${{ runner.os }}-bleeding-${{ github.sha }}-linux/arm/v7
- name: Cache Docker layers
uses: actions/cache@v2.1.4
id: cache-amd64
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/dockerimage.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Build, stable, ${{ matrix.architecture }}
strategy:
matrix:
architecture: [linux/arm/v7, linux/arm64]
architecture: [linux/arm64]
env:
MATRIX_ARCHITECTURE: ${{ matrix.architecture }}
steps:
Expand Down Expand Up @@ -277,12 +277,6 @@ jobs:
with:
path: /tmp/.buildx-cache/linux/arm64
key: ${{ runner.os }}-buildx-${{ github.sha }}-linux/arm64
- name: Cache Docker layers
uses: actions/cache@v2.1.4
id: cache-arm-v7
with:
path: /tmp/.buildx-cache/linux/arm/v7
key: ${{ runner.os }}-buildx-${{ github.sha }}-linux/arm/v7
- name: Cache Docker layers
uses: actions/cache@v2.1.4
id: cache-amd64
Expand Down

0 comments on commit 75f0742

Please sign in to comment.