diff options
author | Yuchen Pei <hi@ypei.me> | 2022-07-21 12:27:19 +1000 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2022-07-21 12:27:19 +1000 |
commit | 32ac0f03b4259fc8eebba9bb3a2a46d23122a43b (patch) | |
tree | a371fb9c5a3f78e6f53c66d70e1255fdc71bba4d /.github | |
parent | cd17128898089450bb21790fd1864dc08fd4ddbc (diff) | |
parent | 2368e9329e6600b46000abd24ec00b7e27bcae75 (diff) |
Merge remote-tracking branch 'upstream/ghc-9.4' into ghc-9.4
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e2e8b34..fc1db83e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ name: CI on: pull_request: push: - branches: ["ghc-9.2"] + branches: ["ghc-head"] jobs: cabal: @@ -15,30 +15,28 @@ jobs: os: [ubuntu-latest] cabal: ["3.6"] ghc: - - "9.2.2" + - "head" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 + if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/ghc-head' - - uses: haskell/actions/setup@v2 + - name: Install gmp and tinfo + run: | + sudo -- sh -c "apt-get update" + sudo -- sh -c "apt-get -y install libgmp-dev libtinfo-dev" + + - uses: haskell/actions/setup@main id: setup-haskell-cabal name: Setup Haskell with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} - # GitHub preinstalls recent GHC versions, and haskell/actions/setup uses the - # preinstalled version when possible. However, GitHub's preinstalled GHC does - # not include documentation, and we need documentation to run Haddock tests. - # Therefore, we reinstall GHC to ensure that we have the documentation we - # need. - - name: Reinstall GHC with docs - run: | - if [[ ! -e ~/.ghcup/ghc/${{ matrix.ghc }}/share/doc ]]; then - ghcup install ghc --force ${{ matrix.ghc }} --set - fi + - name: Prepare environment + run: echo "$HOME/.ghcup/bin" >> $GITHUB_PATH - - name: Setup + - name: Freeze run: | cabal configure --with-compiler ghc-${{ matrix.ghc }} --enable-tests --enable-benchmarks --test-show-details=direct cabal freeze |