-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (64 loc) · 1.98 KB
/
hs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Haskell CI
on:
push:
branches: [ main ]
paths: [ hs/** ]
pull_request:
branches: [ main ]
paths: [ hs/** ]
workflow_dispatch:
jobs:
get-inputs:
uses: ephemient/aoc2024/.github/workflows/get-inputs.yml@main
secrets:
SESSION: ${{ secrets.SESSION }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup
with:
ghc-version: 9.10.1
- run: |
cabal configure --enable-tests --enable-benchmarks
cabal build all --dry-run
working-directory: hs
- uses: actions/cache/restore@v4
id: cache
env:
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }}
with:
path: ${{ steps.setup.outputs.cabal-store }}
key: ${{ env.key }}-plan-${{ hashFiles('hs/dist-newstyle/cache/plan.json') }}
restore-keys: ${{ env.key }}-
- run: cabal build all --only-dependencies
if: steps.cache.outputs.cache-hit != 'true'
working-directory: hs
- uses: actions/cache/save@v4
if: steps.cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.setup.outputs.cabal-store }}
key: ${{ steps.cache.outputs.cache-primary-key }}
- id: build
run: |
cabal build all
echo "exe=$(cabal list-bin aoc2024)" >> $GITHUB_OUTPUT
working-directory: hs
- run: cabal test all --test-show-details=direct
working-directory: hs
- run: cabal check
working-directory: hs
- uses: actions/upload-artifact@v4
with:
name: aoc2024-hs
path: ${{ steps.build.outputs.exe }}
run:
needs: [ get-inputs, build ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- run: chmod +x aoc2024-hs/aoc2024
- run: aoc2024-hs/aoc2024
env:
AOC2024_DATADIR: inputs