Skip to content

Commit 7ae336e

Browse files
committed
Disable 32bit test
1 parent 6513f77 commit 7ae336e

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

.github/workflows/release.yaml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -567,29 +567,29 @@ jobs:
567567
DISTRO: ${{ matrix.platform.DISTRO }}
568568
ADD_CABAL_ARGS: ${{ matrix.platform.ADD_CABAL_ARGS }}
569569

570-
test-linux-32bit:
571-
name: Test linux binaries (32bit)
572-
runs-on: ubuntu-latest
573-
needs: ["build-linux-32bit"]
574-
env:
575-
TARBALL_EXT: tar.xz
576-
ARCH: 32
577-
DISTRO: "Unknown"
578-
ARTIFACT: "i386-linux-unknown"
579-
ADD_CABAL_ARGS: ""
580-
steps:
581-
- name: Checkout code
582-
uses: actions/checkout@v4
583-
584-
- uses: actions/download-artifact@v4
585-
with:
586-
name: artifacts-${{ env.ARTIFACT }}
587-
path: ./out
588-
589-
- name: Run build (32 bit linux)
590-
uses: docker://hasufell/i386-alpine-haskell:3.21
591-
with:
592-
args: sh -c "apk update && apk add groff bash binutils-gold curl gcc g++ gmp-dev libc-dev libffi-dev make musl-dev ncurses-dev perl tar xz autoconf automake bzip2 coreutils elfutils-dev findutils git jq bzip2-dev patch python3 sqlite sudo wget which zlib-dev patchelf zlib zlib-dev zlib-static && git config --system --add safe.directory $GITHUB_WORKSPACE && export PATH=$HOME/.ghcup/bin:$PATH && bash .github/scripts/test.sh"
570+
# test-linux-32bit:
571+
# name: Test linux binaries (32bit)
572+
# runs-on: ubuntu-latest
573+
# needs: ["build-linux-32bit"]
574+
# env:
575+
# TARBALL_EXT: tar.xz
576+
# ARCH: 32
577+
# DISTRO: "Unknown"
578+
# ARTIFACT: "i386-linux-unknown"
579+
# ADD_CABAL_ARGS: ""
580+
# steps:
581+
# - name: Checkout code
582+
# uses: actions/checkout@v4
583+
#
584+
# - uses: actions/download-artifact@v4
585+
# with:
586+
# name: artifacts-${{ env.ARTIFACT }}
587+
# path: ./out
588+
#
589+
# - name: Run build (32 bit linux)
590+
# uses: docker://hasufell/i386-alpine-haskell:3.21
591+
# with:
592+
# args: sh -c "apk update && apk add groff bash binutils-gold curl gcc g++ gmp-dev libc-dev libffi-dev make musl-dev ncurses-dev perl tar xz autoconf automake bzip2 coreutils elfutils-dev findutils git jq bzip2-dev patch python3 sqlite sudo wget which zlib-dev patchelf zlib zlib-dev zlib-static && git config --system --add safe.directory $GITHUB_WORKSPACE && export PATH=$HOME/.ghcup/bin:$PATH && bash .github/scripts/test.sh"
593593

594594
test-arm:
595595
name: Test ARM binary
@@ -787,7 +787,8 @@ jobs:
787787
, "build-win"
788788
, "build-freebsd-x86_64"
789789
, "test-linux"
790-
, "test-linux-32bit"
790+
# TODO: broken: https://github.com/haskell/cabal/issues/11049
791+
# , "test-linux-32bit"
791792
, "test-arm"
792793
, "test-mac-x86_64"
793794
, "test-mac-aarch64"

0 commit comments

Comments
 (0)