forked from iand675/hs-opentelemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (99 loc) · 3.38 KB
/
haskell.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
on:
push:
pull_request:
jobs:
stack-ghc-8_10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-22.11
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-8.10-${{ hashFiles('stack-ghc-8.10.yaml.lock') }}-2
restore-keys: |
- run: stack --stack-yaml stack-ghc-8.10.yaml build --only-dependencies
- run: stack --stack-yaml stack-ghc-8.10.yaml build
- run: stack --stack-yaml stack-ghc-8.10.yaml test
- run: stack --stack-yaml stack-ghc-8.10.yaml bench --no-run-benchmarks
stack-ghc-9_0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-22.11
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-${{ hashFiles('stack.yaml.lock') }}-2
restore-keys: |
- run: stack build --only-dependencies
- run: stack build
- run: stack test
- run: stack bench --no-run-benchmarks
stack-ghc-9_2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-22.11
- uses: haskell/actions/setup@v2
with:
enable-stack: true
- if: ${{ runner.os == 'Linux' }}
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: stack-${{ runner.os }}-9.2-${{ hashFiles('stack-ghc-9.2.yaml.lock') }}-2
restore-keys: |
- run: stack --stack-yaml stack-ghc-9.2.yaml build --only-dependencies
- run: stack --stack-yaml stack-ghc-9.2.yaml build
- run: stack --stack-yaml stack-ghc-9.2.yaml test
- run: stack --stack-yaml stack-ghc-9.2.yaml bench --no-run-benchmarks
cabal-ghc-9_0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-22.11
- uses: actions/cache@v3
with:
path: ~/.cabal
key: cabal-${{ runner.os }}-9.0-${{ hashFiles('cabal.project.freeze') }}
- run: nix-shell --run 'cabal update'
- run: nix-shell --run 'cabal v2-build --only-dependencies all'
- run: nix-shell --run 'cabal v2-build all'
- run: nix-shell --run 'cabal v2-test all'
- run: nix-shell --run 'cabal v2-build --enable-benchmarks all'
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: fourmolu/fourmolu-action@v9
with:
version: "0.13.1.0"