Skip to content

Commit eb5a1ce

Browse files
committed
Disable 32bit test
1 parent 9141851 commit eb5a1ce

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
@@ -593,29 +593,29 @@ jobs:
593593
DISTRO: ${{ matrix.platform.DISTRO }}
594594
ADD_CABAL_ARGS: ${{ matrix.platform.ADD_CABAL_ARGS }}
595595

596-
test-linux-32bit:
597-
name: Test linux binaries (32bit)
598-
runs-on: ubuntu-latest
599-
needs: ["build-linux-32bit"]
600-
env:
601-
TARBALL_EXT: tar.xz
602-
ARCH: 32
603-
DISTRO: "Unknown"
604-
ARTIFACT: "i386-linux-unknown"
605-
ADD_CABAL_ARGS: ""
606-
steps:
607-
- name: Checkout code
608-
uses: actions/checkout@v4
609-
610-
- uses: actions/download-artifact@v4
611-
with:
612-
name: artifacts-${{ env.ARTIFACT }}
613-
path: ./out
614-
615-
- name: Run build (32 bit linux)
616-
uses: docker://hasufell/i386-alpine-haskell:3.21
617-
with:
618-
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"
596+
# test-linux-32bit:
597+
# name: Test linux binaries (32bit)
598+
# runs-on: ubuntu-latest
599+
# needs: ["build-linux-32bit"]
600+
# env:
601+
# TARBALL_EXT: tar.xz
602+
# ARCH: 32
603+
# DISTRO: "Unknown"
604+
# ARTIFACT: "i386-linux-unknown"
605+
# ADD_CABAL_ARGS: ""
606+
# steps:
607+
# - name: Checkout code
608+
# uses: actions/checkout@v4
609+
#
610+
# - uses: actions/download-artifact@v4
611+
# with:
612+
# name: artifacts-${{ env.ARTIFACT }}
613+
# path: ./out
614+
#
615+
# - name: Run build (32 bit linux)
616+
# uses: docker://hasufell/i386-alpine-haskell:3.21
617+
# with:
618+
# 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"
619619

620620
test-arm:
621621
name: Test ARM binary
@@ -813,7 +813,8 @@ jobs:
813813
, "build-win"
814814
, "build-freebsd-x86_64"
815815
, "test-linux"
816-
, "test-linux-32bit"
816+
# TODO: broken: https://github.com/haskell/cabal/issues/11049
817+
# , "test-linux-32bit"
817818
, "test-arm"
818819
, "test-mac-x86_64"
819820
, "test-mac-aarch64"

0 commit comments

Comments
 (0)