use system libffi #106
Workflow file for this run
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
| name: ghc-lib-ghc-master-ghc-9.12.1 | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| runhaskell: | |
| name: ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }}-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu, macos, windows] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: haskell-actions/setup@v2 | |
| id: setup-haskell | |
| with: | |
| ghc-version: 9.12.1 | |
| cabal-version: 'latest' | |
| - name: Install build tools (macOS) | |
| run: brew install automake | |
| if: matrix.os == 'macos' | |
| - name: Install build tools (ubuntu) | |
| run: sudo apt-get update && sudo apt-get install -y libffi-dev | |
| if: matrix.os == 'ubuntu' | |
| - name: Configure msys2 (windows) | |
| shell: bash | |
| run: |- | |
| echo "MSYSTEM=CLANG64" >> $GITHUB_ENV | |
| echo "/c/msys64/clang64/bin" >> $GITHUB_PATH | |
| echo "/c/mingw64/usr/bin" >> $GITHUB_PATH | |
| echo "/c/msys64/usr/bin" >> $GITHUB_PATH | |
| if: matrix.os == 'windows' | |
| - name: Run CI.hs (windows) | |
| shell: C:\msys64\usr\bin\bash.exe --noprofile --norc -e -o pipefail '{0}' | |
| run: |- | |
| pacman -S autoconf automake-wrapper make patch python tar mintty mingw-w64-clang-x86_64-libffi mingw-w64-clang-x86_64-pkgconf --noconfirm | |
| cabal run exe:ghc-lib-build-tool -- --ghc-flavor ghc-master | |
| if: matrix.os == 'windows' | |
| - name: Run CI.hs (unix) | |
| shell: bash | |
| run: cabal run exe:ghc-lib-build-tool -- --ghc-flavor ghc-master | |
| if: matrix.os == 'ubuntu' || matrix.os == 'macos' |