Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-CACHE_V4
key: ${{ runner.os }}-${{ matrix.ghc }}-CACHE_V5
# ----------------
- name: "Install PAPI"
run: |
Expand Down Expand Up @@ -117,3 +117,26 @@ jobs:
run: |
cabal bench all
working-directory: unpacked/
# Job for checking that vector is buildable and works correctly on 32-bit
# systems. Adapted from bitvec's CI setup
i386:
needs: cabal
runs-on: ubuntu-latest
container:
image: i386/ubuntu:bionic
steps:
- name: Install
run: |
apt-get update -y
apt-get install -y autoconf build-essential zlib1g-dev libgmp-dev curl libncurses5 libtinfo5 libncurses5-dev libtinfo-dev
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 sh
- uses: actions/checkout@v1
# ----------------
- name: Test
run: |
source ~/.ghcup/env
cabal -V
ghc -V
cabal update
cabal build all --write-ghc-environment-files=always
cabal test all --enable-tests --test-show-details=direct
Loading