CI Build #403
This file contains 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
--- | |
# yamllint disable rule:line-length | |
name: CI Build | |
on: | |
# Run Daily | |
schedule: | |
- cron: '0 0 * * *' | |
# Run on Push | |
push: | |
# Run on Tag Creation | |
create: | |
# Allow Running Manually | |
workflow_dispatch: | |
jobs: | |
build-stack: | |
name: Stack | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Stack Artifacts | |
uses: actions/cache@v4 | |
with: | |
key: stack-build-lts-${{ github.ref }}-${{ github.sha }} | |
path: | | |
~/.stack/ | |
.stack-work/ | |
restore-keys: | | |
stack-build-lts-${{ github.ref }}- | |
stack-build-lts- | |
stack-build- | |
- uses: haskell-actions/setup@v2 | |
with: | |
enable-stack: true | |
stack-no-global: true | |
- run: stack test --fast --haddock --pedantic | |
# Stackage Nightly - Failures Allowed | |
build-nightly: | |
name: Stackage Nightly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Current Date | |
id: date | |
run: echo -e "::set-output name=year::$(date +%Y)\n::set-output name=month::$(date +%m)\n::set-output name=day::$(date +%d)" | |
- name: Cache Stack Artifacts | |
uses: actions/cache@v4 | |
with: | |
key: stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}-${{ github.ref }}-${{ github.sha }} | |
path: | | |
~/.stack/ | |
.stack-work/ | |
restore-keys: | | |
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}-${{ github.ref }}- | |
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}- | |
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}- | |
stack-build-nightly-${{ steps.date.outputs.year }}- | |
stack-build-nightly- | |
- uses: haskell-actions/setup@v2 | |
with: | |
enable-stack: true | |
stack-no-global: true | |
- run: stack test --fast --haddock --pedantic --resolver nightly | |
continue-on-error: true | |
# Cabal Builds w/ 3 Latest GHC Versions | |
build-cabal: | |
name: GHC / Cabal | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 3 | |
matrix: | |
ghc: ['9.2', '9.4', '9.6'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Cabal Artifacts | |
uses: actions/cache@v4 | |
with: | |
key: cabal-build-${{ matrix.ghc }}-${{ github.ref }}-${{ github.sha }} | |
path: | | |
~/.cabal/packages/ | |
~/.cabal/store | |
dist-newstyle/ | |
restore-keys: | | |
cabal-build-${{ matrix.ghc }}-${{ github.ref }}- | |
cabal-build-${{ matrix.ghc }}- | |
cabal-build- | |
- uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: latest | |
enable-stack: true | |
- run: cabal update | |
- run: cabal new-test --enable-tests && cabal new-haddock | |
# Allow failures - hledger test compilation borked | |
continue-on-error: true |