hnix-store/.github/workflows/Core-Cabal-macOS.yml
dependabot[bot] e593ab3f0a
build(deps): bump actions/cache from 3.3.0 to 3.3.1
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.3.0...v3.3.1)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-13 12:01:39 +00:00

65 lines
1.5 KiB
YAML

name: "Hackage, Cabal, macOS"
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "45 03 * * *"
env:
cabalConfig: --enable-tests --disable-optimization --enable-deterministic
jobs:
build10:
name: "GHC"
runs-on: macos-latest
strategy:
matrix:
packageRoot: [ hnix-store-core ]
defaults:
run:
working-directory: "./${{ matrix.packageRoot }}"
steps:
- name: "Git checkout"
uses: actions/checkout@v3
with:
submodules: recursive
- name: "Haskell env setup"
id: HaskEnvSetup
uses: haskell/actions/setup@v2
with:
ghc-version: '9.0'
- name: "Repository update"
run: cabal v2-update
- name: "Install additional system packages"
run: cabal v2-install tasty-discover
# NOTE: Freeze is for the caching
- name: "Configuration freeze"
run: cabal v2-freeze $cabalConfig
- name: "Copy freeze file to the root dir"
run: cp -a cabal.project.freeze ../cabal.project.freeze
- name: "Configuring GitHub cache"
uses: actions/cache@v3.3.1
with:
path: |
${{ steps.HaskEnvSetup.outputs.cabal-store }}
dist-newstyle
key: ${{ matrix.packageRoot }}-${{ runner.os }}-Cabal-${{ hashFiles( 'cabal.project.freeze' ) }}
restore-keys: ${{ matrix.packageRoot }}-${{ runner.os }}-Cabal-
- name: "Build"
run: cabal v2-build $cabalConfig
- name: "Tests"
run: cabal v2-test $cabalConfig