Use alpine:3.12

It appears tat at least alpine:3.16 is broken
and produces linking errors.
This commit is contained in:
Julian Ospald 2023-12-04 23:14:52 +08:00
parent 5ff61cdf86
commit 71b7c96ddd
No known key found for this signature in database
GPG Key ID: 4275CDA6A29BED43
3 changed files with 6 additions and 6 deletions

View File

@ -46,7 +46,7 @@ jobs:
- if: matrix.ARCH == '32'
name: Run build (32 bit linux)
uses: docker://hasufell/i386-alpine-haskell:3.16
uses: docker://hasufell/i386-alpine-haskell:3.12
with:
args: sh .github/scripts/build.sh
env:
@ -60,7 +60,7 @@ jobs:
- if: matrix.ARCH == '64'
name: Run build (64 bit linux)
uses: docker://hasufell/alpine-haskell:3.16
uses: docker://hasufell/alpine-haskell:3.12
with:
args: sh .github/scripts/build.sh
env:
@ -285,7 +285,7 @@ jobs:
- if: matrix.ARCH == '32' && matrix.DISTRO == 'Alpine'
name: Run test (32 bit linux Alpine)
uses: docker://hasufell/i386-alpine-haskell:3.16
uses: docker://hasufell/i386-alpine-haskell:3.12
with:
args: sh .github/scripts/test.sh
env:
@ -296,7 +296,7 @@ jobs:
- if: matrix.ARCH == '64' && matrix.DISTRO == 'Alpine'
name: Run test (64 bit linux Alpine)
uses: docker://hasufell/alpine-haskell:3.16
uses: docker://hasufell/alpine-haskell:3.12
with:
args: sh .github/scripts/test.sh
env:

View File

@ -1,4 +1,4 @@
FROM --platform=linux/i386 i386/alpine:3.16
FROM --platform=linux/i386 i386/alpine:3.12
ENV LANG C.UTF-8

View File

@ -1,4 +1,4 @@
FROM alpine:3.16
FROM alpine:3.12
ENV LANG C.UTF-8