-
-
Notifications
You must be signed in to change notification settings - Fork 62
108 lines (93 loc) · 3.5 KB
/
ci.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
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
name: CI tests
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
versions:
- ghc: '8.10'
cabal: '3.2'
- ghc: '9.0'
cabal: '3.4'
- ghc: '9.2'
cabal: '3.6'
- ghc: '9.4'
cabal: '3.8'
- ghc: '9.6'
cabal: '3.10'
steps:
- uses: actions/checkout@v1
- name: Install ghc/cabal
run: |
ghcup install ghc --set ${{ matrix.versions.ghc }}
ghcup install cabal ${{ matrix.versions.cabal }}
- name: Cache cabal global package db
id: cabal-global
uses: actions/cache@v2
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@v2
with:
path: |
dist-newstyle
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ secrets.CACHE_VERSION }}
- name: Bootstrap
run: |
cabal v2-update
cabal v2-build --only-dependencies -fexecutable --disable-optimization skylighting-core
cabal v2-build -fexecutable --disable-optimization skylighting-core 2>&1 | tee build.log
# fail if warnings in local build
! grep -q ": *[Ww]arning:" build.log || exit 1
cd skylighting
cabal v2-run skylighting-extract -fexecutable --disable-optimization -- ../skylighting-core/xml
- name: Build and test
run: |
cabal v2-build -fexecutable --enable-test --enable-benchmark --disable-optimization --only-dependencies all
cabal v2-build -j1 -fexecutable --enable-test --enable-benchmark --disable-optimization --only-dependencies all 2>&1 | tee build.log
# fail if warnings in local build
! grep -q ": [Ww]arning:" build.log || exit 1
cabal v2-test -fexecutable --disable-optimization --test-options="--hide-successes" all
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Install stack
shell: cmd
run: |
choco install haskell-stack
- name: Bootstrap
shell: pwsh
run: |
$env:Path += ";$HOME\AppData\Roaming\local\bin"
stack install --fast --flag skylighting-core:executable skylighting-core
cd skylighting
skylighting-extract (get-item ..\skylighting-core\xml)
- name: Build and test
shell: cmd
run: |
chcp 65001
stack build --test --fast --flag skylighting:executable --dependencies-only
stack test --jobs=1 --fast --flag skylighting:executable --ghc-options=-Werror
# macos:
# runs-on: macOS-latest
# steps:
# - uses: actions/checkout@v1
# - name: Install stack
# run: |
# curl -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz -o stack.tar.gz
# tar xzvf stack.tar.gz --strip-components=1 'stack*/stack'
# - name: Bootstrap
# run: |
# ./stack install --fast --flag skylighting-core:executable skylighting-core
# cd skylighting
# ../stack exec skylighting-extract -- ../skylighting-core/xml
# - name: Build and test
# run: |
# ./stack build --test --fast --flag skylighting:executable --dependencies-only
# ./stack build --test --jobs=1 --haddock --no-haddock-deps --fast --flag skylighting:executable --ghc-options=-Werror