Skip to content

Commit 777e5be

Browse files
committed
Disable 32bit test
1 parent a5a112e commit 777e5be

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
@@ -579,29 +579,29 @@ jobs:
579579
DISTRO: ${{ matrix.platform.DISTRO }}
580580
ADD_CABAL_ARGS: ${{ matrix.platform.ADD_CABAL_ARGS }}
581581

582-
test-linux-32bit:
583-
name: Test linux binaries (32bit)
584-
runs-on: ubuntu-latest
585-
needs: ["build-linux-32bit"]
586-
env:
587-
TARBALL_EXT: tar.xz
588-
ARCH: 32
589-
DISTRO: "Unknown"
590-
ARTIFACT: "i386-linux-unknown"
591-
ADD_CABAL_ARGS: ""
592-
steps:
593-
- name: Checkout code
594-
uses: actions/checkout@v4
595-
596-
- uses: actions/download-artifact@v4
597-
with:
598-
name: artifacts-${{ env.ARTIFACT }}
599-
path: ./out
600-
601-
- name: Run build (32 bit linux)
602-
uses: docker://hasufell/i386-alpine-haskell:3.21
603-
with:
604-
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"
582+
# test-linux-32bit:
583+
# name: Test linux binaries (32bit)
584+
# runs-on: ubuntu-latest
585+
# needs: ["build-linux-32bit"]
586+
# env:
587+
# TARBALL_EXT: tar.xz
588+
# ARCH: 32
589+
# DISTRO: "Unknown"
590+
# ARTIFACT: "i386-linux-unknown"
591+
# ADD_CABAL_ARGS: ""
592+
# steps:
593+
# - name: Checkout code
594+
# uses: actions/checkout@v4
595+
#
596+
# - uses: actions/download-artifact@v4
597+
# with:
598+
# name: artifacts-${{ env.ARTIFACT }}
599+
# path: ./out
600+
#
601+
# - name: Run build (32 bit linux)
602+
# uses: docker://hasufell/i386-alpine-haskell:3.21
603+
# with:
604+
# 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"
605605

606606
test-arm:
607607
name: Test ARM binary
@@ -799,7 +799,8 @@ jobs:
799799
, "build-win"
800800
, "build-freebsd-x86_64"
801801
, "test-linux"
802-
, "test-linux-32bit"
802+
# TODO: broken: https://github.com/haskell/cabal/issues/11049
803+
# , "test-linux-32bit"
803804
, "test-arm"
804805
, "test-mac-x86_64"
805806
, "test-mac-aarch64"

0 commit comments

Comments
 (0)