File tree Expand file tree Collapse file tree 5 files changed +4
-43
lines changed Expand file tree Collapse file tree 5 files changed +4
-43
lines changed Original file line number Diff line number Diff line change 1
1
# Use new container infrastructure to enable caching
2
- dist : trusty
2
+ dist : xenial
3
3
sudo : false
4
4
5
5
# Do not choose a language; we provide our own build tools.
@@ -8,8 +8,6 @@ language: generic
8
8
os :
9
9
- linux
10
10
env :
11
- - STACK_YAML=stack-ghc7.10.3.yaml
12
- - STACK_YAML=stack-ghc8.0.2.yaml
13
11
- STACK_YAML=stack-ghc8.2.2.yaml
14
12
- STACK_YAML=stack-ghc8.4.4.yaml
15
13
- STACK_YAML=stack-ghc8.6.3.yaml
@@ -27,7 +25,7 @@ addons:
27
25
apt :
28
26
packages :
29
27
- libgmp-dev
30
- postgresql : " 9.6 "
28
+ postgresql : " 10 "
31
29
32
30
before_install :
33
31
# Download and unpack the stack executable
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import Data.Foldable
5
5
import Control.Monad
6
6
import Data.Maybe
7
7
import Data.Int
8
- import Data.Either
8
+ import Data.Either hiding ( fromRight )
9
9
import qualified Data.ByteString as B
10
10
import qualified Data.ByteString.Lazy as BL
11
11
import qualified Data.ByteString.Char8 as BS
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ testConnection name confContent = testCase name $ withPghba confContent $
39
39
}
40
40
41
41
pghbaFilename :: FilePath
42
- pghbaFilename = " /etc/postgresql/9.5 /main/pg_hba.conf"
42
+ pghbaFilename = " /etc/postgresql/10 /main/pg_hba.conf"
43
43
44
44
withPghba :: B. ByteString -> IO a -> IO a
45
45
withPghba confContent action = do
You can’t perform that action at this time.
0 commit comments