Skip to content

Commit b84b1e8

Browse files
committed
Fix i386
1 parent 5dd0810 commit b84b1e8

1 file changed

Lines changed: 7 additions & 13 deletions

File tree

.github/workflows/test.yaml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -97,20 +97,14 @@ jobs:
9797
9898
i386:
9999
runs-on: ubuntu-latest
100-
container:
101-
image: i386/ubuntu:bionic
102100
steps:
103-
- name: Install
104-
run: |
105-
apt-get update -y
106-
apt-get install -y autoconf build-essential zlib1g-dev libgmp-dev curl libncurses5 libtinfo5 libncurses5-dev libtinfo-dev git
107-
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 sh
108-
- uses: actions/checkout@v4
109-
- name: Test
110-
run: |
111-
. ~/.ghcup/env
112-
cabal update
113-
cabal test
101+
- name: Checkout code
102+
uses: actions/checkout@v4
103+
104+
- name: Run build (32 bit linux)
105+
uses: docker://hasufell/i386-alpine-haskell:3.12
106+
with:
107+
args: sh -c "cabal update && cabal test"
114108

115109
freebsd:
116110
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)