aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: f402ef74548f3d7ec9114a96968d196e646adb62 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
name: CI tests

on:
  push:
    branches:
    - '*'
    - '!rc/*'
    paths-ignore:
    - 'doc/*.md'
    - 'MANUAL.txt'
    - '*.md'
    - 'RELEASE_CHECKLIST'
    - 'BUGS'
    - 'README.template'
    - 'hie.yaml'
    - '*.nix'
    - 'tools/**'
    - 'linux/**'
    - 'macos/**'
    - 'windows/**'
    - 'man/**'
  pull_request:
    paths-ignore:
    - 'doc/*.md'
    - 'MANUAL.txt'
    - '*.md'
    - 'RELEASE_CHECKLIST'
    - 'BUGS'
    - 'README.template'
    - 'hie.yaml'
    - '*.nix'
    - 'tools/**'
    - 'linux/**'
    - 'macos/**'
    - 'windows/**'
    - 'man/**'

permissions:
  contents: read

jobs:
  linux:

    runs-on: ubuntu-latest
    strategy:
      fail-fast: true
      matrix:
        versions:
          - ghc: '8.6.5'
            cabal: 'latest'
            cabalopts: '-f-embed_data_files'
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
          - ghc: '8.8.4'
            cabal: 'latest'
            cabalopts: '-f-lua -f-server --enable-benchmarks'
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
          - ghc: '8.10.7'
            cabal: 'latest'
            cabalopts: ''
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
          - ghc: '9.0.2'
            cabal: 'latest'
            cabalopts: ''
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
          - ghc: '9.2.5'
            cabal: 'latest'
            cabalopts: ''
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
          - ghc: '9.4.4'
            cabal: 'latest'
            cabalopts: ''
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'

          - ghc: '9.4.4'
            cabal: 'latest'
            cabalopts: '--allow-newer --constrain "mtl >= 2.3.1"'
            testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
    steps:
    - uses: actions/checkout@v3

    # needed by memory
    - name: Install numa
      run: sudo apt-get install libnuma-dev

    - name: Install cabal/ghc
      run: |
        ghcup install ghc --set ${{ matrix.versions.ghc }}
        ghcup install cabal --set ${{ matrix.versions.cabal }}

    # declare/restore cached things

    - name: Cache cabal global package db
      id:   cabal-global
      uses: actions/cache@v3
      with:
        path: |
          ~/.cabal
        key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ secrets.CACHE_VERSION }}

    - name: Cache cabal work
      id:   cabal-local
      uses: actions/cache@v3
      with:
        path: |
          dist-newstyle
        key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local-${{ secrets.CACHE_VERSION }}

    - name: Update cabal
      run: |
          cabal update

    - name: Build and test
      run: |
          cabal test ${{ matrix.versions.cabalopts }} --enable-tests --disable-optimization --ghc-options=-Werror all

  windows:

    runs-on: windows-2019

    steps:
    - uses: actions/checkout@v3

    # declare/restore cached things

    - name: Cache stack global package db
      id:   stack-global-package-db
      uses: actions/cache@v3
      with:
        path: |
          C:\Users\runneradmin\AppData\Roaming\stack\
        key: ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('stack.yaml') }}

    # stack's local package dbs for the project and each package
    - name: Cache .stack-work
      uses: actions/cache@v3
      with:
        path: |
          .stack-work
        key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ secrets.CACHE_VERSION }}
        restore-keys: ${{ runner.os }}-stack-work-${{ secrets.CACHE_VERSION }}

    - name: Install dependencies
      run: |
          stack update
          stack install happy
          stack test --dependencies-only --fast
    - name: Build and test
      shell: cmd
      run: |
          stack test --fast --test-arguments="--hide-successes --ansi-tricks=false"

# We no longer run the macos tests, to make CI faster.
# macos:

#   runs-on: macos-11
#   strategy:
#     fail-fast: true
#     matrix:
#       versions:
#         - ghc: '8.8.4'
#           cabal: '3.2'

#   steps:
#   - uses: actions/checkout@v3

#   - name: Install cabal/ghc
#     run: |
#       ghcup install ghc --set ${{ matrix.versions.ghc }}
#       ghcup install cabal ${{ matrix.versions.cabal }}

#   # declare/restore cached things

#   - name: Cache cabal global package db
#     id:   cabal-global
#     uses: actions/cache@v3
#     with:
#       path: |
#         ~/.cabal
#       key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ secrets.CACHE_VERSION }}

#   - name: Cache cabal work
#     id:   cabal-local
#     uses: actions/cache@v3
#     with:
#       path: |
#         dist-newstyle
#       key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local-${{ secrets.CACHE_VERSION }}

#   - name: Install dependencies
#     run: |
#         cabal v2-update
#         cabal v2-build --dependencies-only --enable-tests --disable-optimization
#   - name: Build and test
#     run: |
#         cabal v2-build --enable-tests --disable-optimization 2>&1 | tee build.log
#         # fail if warnings in local build
#         ! grep -q ": *[Ww]arning:" build.log || exit 1
#         cabal v2-test --disable-optimization --test-option=--hide-successes --test-option=--ansi-tricks=false