File tree 1 file changed +0
-57
lines changed
1 file changed +0
-57
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
dist : bionic
3
3
4
- before_script : |
5
- yarn build
6
- node packages/pg/script/create-test-tables.js postgresql:///
7
-
8
- env :
9
- - CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
10
-
11
- node_js :
12
- - lts/dubnium
13
- - lts/erbium
14
- # node 13.7 seems to have changed behavior of async iterators exiting early on streams
15
- # if 13.8 still has this problem when it comes down I'll talk to the node team about the change
16
- # in the mean time...peg to 13.6
17
- - 13.6
18
- - 14
19
-
20
4
addons :
21
5
postgresql : ' 10'
22
6
23
7
matrix :
24
8
include :
25
- # Run tests/paths that require password authentication
26
- - node_js : lts/erbium
27
- env :
28
- - CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres PGPASSWORD=test-password SCRAM_TEST_PGUSER=scram_test SCRAM_TEST_PGPASSWORD=test4scram
29
- before_script : |
30
- sudo -u postgres sed -i \
31
- -e '/^local/ s/trust$/peer/' \
32
- -e '/^host/ s/trust$/md5/' \
33
- /etc/postgresql/10/main/pg_hba.conf
34
- sudo -u postgres psql -c "ALTER ROLE postgres PASSWORD 'test-password'; SELECT pg_reload_conf()"
35
- yarn build
36
- node packages/pg/script/create-test-tables.js postgresql:///
37
- sudo -u postgres -- psql \
38
- -c "SET password_encryption = 'scram-sha-256'" \
39
- -c "CREATE ROLE scram_test login password 'test4scram'"
40
-
41
9
# Run tests/paths with client certificate authentication
42
10
- node_js : lts/*
43
11
env :
@@ -60,28 +28,3 @@ matrix:
60
28
make -C packages/pg/test/tls install DESTDIR=/etc/postgresql/10/main
61
29
62
30
systemctl restart postgresql
63
-
64
- - node_js : lts/carbon
65
- addons :
66
- postgresql : ' 9.5'
67
- dist : precise
68
-
69
- # different PostgreSQL versions on Node LTS
70
- - node_js : lts/erbium
71
- addons :
72
- postgresql : ' 9.3'
73
- - node_js : lts/erbium
74
- addons :
75
- postgresql : ' 9.4'
76
- - node_js : lts/erbium
77
- addons :
78
- postgresql : ' 9.5'
79
- - node_js : lts/erbium
80
- addons :
81
- postgresql : ' 9.6'
82
-
83
- # PostgreSQL 9.2 only works on precise
84
- - node_js : lts/carbon
85
- addons :
86
- postgresql : ' 9.2'
87
- dist : precise
You can’t perform that action at this time.
0 commit comments