-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (32 loc) · 1 KB
/
.travis.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
jobs:
include:
- language: nix
script:
- nix-shell --pure -A ghc86.shell --run "make test-nix"
- nix-shell --pure -A ghc88.shell --run "make test-nix"
- nix-build nix/release.nix
before_install:
- sudo mkdir -p /etc/nix
- echo "substituters = https://cache.nixos.org https://maybevoid.cachix.org" | sudo tee -a /etc/nix/nix.conf > /dev/null
- echo "trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= maybevoid.cachix.org-1:Ffj+i1SPSghfQWDfidVDW+HxeDHOoNfiaKksayZGgkk=" | sudo tee -a /etc/nix/nix.conf > /dev/null
- language: haskell
cabal: "3.0"
ghc: "8.8.3"
install:
- make build
script:
- make test
- language: haskell
cabal: "3.0"
ghc: "8.6.5"
install:
- make build
script:
- make test
- language: haskell
cabal: "3.0"
ghc: "8.10.1"
install:
- make build
script:
- make test