Convert test infrastructure to tasty-golden based testsuite (#450) #911
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: CI | |
| # Trigger the workflow on push or pull request, but only for the master branch | |
| on: | |
| pull_request: | |
| paths: | |
| - 'lib/**' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'lib/base/base.agda-lib' | |
| - 'agda2hs.cabal' | |
| - 'cabal.project' | |
| - 'Makefile' | |
| - '.github/workflows/**.yml' | |
| branches: [master] | |
| push: | |
| paths: | |
| - 'lib/**' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'lib/base/base.agda-lib' | |
| - 'agda2hs.cabal' | |
| - 'cabal.project' | |
| - 'Makefile' | |
| - '.github/workflows/**.yml' | |
| branches: [master] | |
| jobs: | |
| cabal: | |
| name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] # macOS-latest, windows-latest | |
| cabal: [3.14.2.0] | |
| deploy-ghc: [9.6.7] | |
| ghc: [9.6.7, 9.8.4, 9.10.3, 9.12.2] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Takes care of ghc and cabal. See https://github.com/haskell/actions. | |
| - uses: haskell-actions/setup@v2 | |
| id: setup-haskell-cabal | |
| name: Setup Haskell | |
| with: | |
| ghc-version: ${{ matrix.ghc }} | |
| cabal-version: ${{ matrix.cabal }} | |
| # Andreas, 2025-11-28: Since the freeze file contains a timestamp of the Hackage index | |
| # and the index changes several times a day, | |
| # the freeze file is not very useful as a cache key. | |
| # Instead, use the plan.json file (see below). | |
| # # Generate a cabal.project.freeze file with all dependencies. We use the | |
| # # hash of this as the cache key, so when a dependency changes we upload a | |
| # # new cache. | |
| # - name: Freeze | |
| # run: cabal freeze | |
| - name: Configure the build plan | |
| run: | | |
| cabal build --dry-run | |
| # cabal build --dry-run creates dist-newstyle/cache/plan.json | |
| # Andreas, 2025-11-28, AIM XLI, use fix-whitespace-action | |
| # # Install fix-whitespace since we need it for tests. | |
| # # This is done after the freeze to make sure we re-use the packages | |
| # - name: Install fix-whitespace | |
| # run: | | |
| # echo "import: cabal.project" > cabal.project.ci | |
| # cabal install fix-whitespace --project-file=cabal.project.ci | |
| # Cache the contents of ~/.cabal/store to avoid rebuilding dependencies for | |
| # every build. `restore-keys` makes it use the latest cache even if the | |
| # fingerprint doesn't match, so we don't need to start from scratch every | |
| # time a dependency changes. | |
| - uses: actions/cache/restore@v4 | |
| name: Restore cached ~/.cabal/store | |
| id: cache | |
| with: | |
| path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
| # The freeze file is a bad key, use dist-newstyle/cache/plan.json instead. | |
| # key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} | |
| key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('**/plan.json') }} | |
| restore-keys: ${{ runner.os }}-${{ matrix.ghc }}- | |
| - name: Run fix-whitespace | |
| uses: andreasabel/fix-whitespace-action@v1 | |
| - name: Run test suite | |
| run: make test-on-CI && git diff --exit-code | |
| - name: Generate Prelude HTML | |
| if: ${{ (matrix.ghc == matrix.deploy-ghc) && (github.ref == 'refs/heads/master') }} | |
| run: make libHtml | |
| - name: Deploy Prelude HTML | |
| if: ${{ (matrix.ghc == matrix.deploy-ghc) && (github.ref == 'refs/heads/master') }} | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: html | |
| destination_dir: lib | |
| - uses: actions/cache/save@v4 | |
| name: Cache ~/.cabal/store | |
| if: always() && steps.cache.outputs.cache-hit != 'true' | |
| with: | |
| path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
| key: ${{ steps.cache.outputs.cache-primary-key }} |