-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (64 loc) · 2.02 KB
/
build.yaml
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
on: [push, pull_request]
name: build
jobs:
build:
name: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.8', '9.6.4']
os: [ubuntu-latest]
include:
- ghc: '8.6.5'
resolver: 'lts-14.27'
flags: ''
- ghc: '8.8.4'
resolver: 'lts-16.31'
flags: ''
- ghc: '8.10.7'
resolver: 'lts-18.28'
flags: ''
- ghc: '9.0.2'
resolver: 'lts-19.33'
flags: ''
- ghc: '9.2.8'
resolver: 'lts-20.26'
flags: ''
- ghc: '9.4.8'
resolver: 'lts-21.25'
flags: ''
- ghc: '9.6.4'
resolver: 'lts-22.13'
coveralls: true
flags: '--coverage'
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: latest
- uses: actions/cache@v4
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('*.cabal') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
- name: Build
run: |
stack config set system-ghc --global true
sed -i "s/resolver: .*/resolver: ${{ matrix.resolver }}/" stack.yaml
stack build --test --no-run-tests --bench --no-run-benchmarks ${{ matrix.flags }}
- name: Test
run: stack test ${{ matrix.flags }}
- name: Coveralls
if: matrix.coveralls
continue-on-error: true
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.7.0/shc-Linux-X64.tar.bz2 | tar -xj
./shc --repo-token="$COVERALLS_REPO_TOKEN" pseudo-boolean TestPBFile