Skip to content

Use byteSwapX# in WORDS_BIGENDIAN #1

Use byteSwapX# in WORDS_BIGENDIAN

Use byteSwapX# in WORDS_BIGENDIAN #1

Workflow file for this run

name: emulated
on:
- push
- pull_request
defaults:
run:
shell: bash
jobs:
# Emulation is incredibly slow and memory demanding. It seems that any
# executable with GHC RTS takes at least 7-8 Gb of RAM, so we can run
# `cabal` or `ghc` on their own, but cannot run them both at the same time,
# striking out `cabal test`. Instead we rely on system packages and invoke
# `ghc --make` manually, and even so `ghc -O` is prohibitively expensive.
emulated:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
arch: ['s390x', 'ppc64le']
steps:
- uses: actions/checkout@v3
- uses: uraimo/[email protected]
timeout-minutes: 60
with:
arch: ${{ matrix.arch }}
distro: ubuntu_rolling
githubToken: ${{ github.token }}
install: |
apt-get update -y
apt-get install -y ghc cabal alex
run: |
cabal build
$(cabal list-bin alex) -g tests/simple.x
ghc simple.hs
./simple +RTS -s