-
Notifications
You must be signed in to change notification settings - Fork 42
83 lines (70 loc) · 2.69 KB
/
stack.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
72
73
74
75
76
77
78
79
80
81
82
83
# https://github.com/haskell/actions/tree/main/setup
name: build
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
permissions:
contents: read
jobs:
build:
name: Stack resolver ${{ matrix.stackage-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
stackage-version:
- lts-22.4
- lts-21.23
- lts-20.26
- lts-19.33
- lts-18.28
steps:
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
name: Set up stack ${{ matrix.stackage-version }}
id: setup
with:
enable-stack: true
stack-version: latest
- uses: actions/cache/restore@v3
name: Restore cached ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('**/*.cabal') }}-version-${{ matrix.stackage-version }}
restore-keys: |
${{ runner.os }}-stack-global-
- uses: actions/cache/restore@v3
name: Restore cached .stack-work
with:
path: .stack-work
key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/*.hs') }}-version-${{ matrix.stackage-version }}
restore-keys: |
${{ runner.os }}-stack-work-
- name: Install dependencies
run: stack build --resolver ${{ matrix.stackage-version }} --dependencies-only --test --bench
# Cache dependencies already here, so that we do not have to rebuild them should the subsequent steps fail.
- uses: actions/cache/save@v3
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('**/*.cabal') }}-version-${{ matrix.stackage-version }}
restore-keys: |
${{ runner.os }}-stack-global-
- uses: actions/cache/save@v3
name: Cache .stack-work
with:
path: .stack-work
key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/*.hs') }}-version-${{ matrix.stackage-version }}
restore-keys: |
${{ runner.os }}-stack-work-
- name: Build
run: stack build --resolver ${{ matrix.stackage-version }}
- name: Run tests
run: stack test --resolver ${{ matrix.stackage-version }}
- name: Run benchmarks
run: stack bench --resolver ${{ matrix.stackage-version }}
- name: Build documentation
run: stack haddock --resolver ${{ matrix.stackage-version }}