WANT_FLOAT32 bug: if set to 0, there is an unconditional use (#513) #1424
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build some hackage packages | |
| name: hackage-ci | |
| on: | |
| push: | |
| # branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| # Build on a 64 bit little endian platform | |
| build-hackage-x86_64: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # mhs | |
| - name: checkout mhs repo | |
| uses: actions/checkout@v4 | |
| with: | |
| path: mhs | |
| - name: make and install mhs | |
| run: | | |
| cd mhs | |
| make minstall | |
| echo "$HOME/.mcabal/bin" >> "$GITHUB_PATH" | |
| # Build hackage packages | |
| - name: compile and install packages | |
| run: | | |
| cd mhs | |
| make -f Makefile.packages | |
| # DONE | |
| - name: cleanup | |
| run: | | |
| rm -rf $HOME/.mcabal | |
| # Build on a 32 bit little endian platform | |
| build-hackage-x86: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # mhs | |
| - uses: jirutka/setup-alpine@v1 | |
| with: | |
| arch: x86 | |
| branch: v3.15 | |
| packages: > | |
| build-base | |
| gcc | |
| make | |
| curl | |
| git | |
| - name: checkout mhs repo | |
| uses: actions/checkout@v4 | |
| with: | |
| path: mhs | |
| - name: make and install mhs | |
| run: | | |
| cd mhs | |
| make minstall | |
| echo "$HOME/.mcabal/bin" >> "$GITHUB_PATH" | |
| shell: alpine.sh {0} | |
| # Build hackage packages | |
| - name: compile and install packages | |
| run: | | |
| cd mhs | |
| make -f Makefile.packages | |
| shell: alpine.sh {0} | |
| # DONE | |
| - name: cleanup | |
| run: | | |
| rm -rf $HOME/.mcabal |