File tree Expand file tree Collapse file tree 1 file changed +60
-0
lines changed
Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build & Test HLL
2+
3+ env :
4+ - PG_PRELOAD=hll
5+ on :
6+ push :
7+ branches :
8+ - " **"
9+
10+ workflow_dispatch :
11+
12+ jobs :
13+ build_package :
14+ name : Build
15+ runs-on : ubuntu-latest
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ PGVERSION :
20+ - 9.4
21+ - 9.5
22+ - 9.6
23+ - 10
24+ - 11
25+ - 12
26+ - 13
27+ - 14
28+ - 15
29+
30+ steps :
31+ - name : Checkout repository
32+ uses : actions/checkout@v2
33+
34+ - name : Clone tools branch
35+ run : git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
36+
37+ - name : Install package dependencies
38+ run : sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev python3-testresources
39+
40+
41+ - name : Before Install
42+ run : |
43+ sudo make -C tools install
44+ setup_apt
45+ nuke_pg
46+
47+ - name : Install
48+ run : |
49+ install_uncrustify
50+ install_pg
51+
52+ - name : Before Script
53+ run : |
54+ config_and_start_cluster
55+ echo "extra_float_digits = 0" >> "/etc/postgresql/${PGVERSION}/test/postgresql.conf"
56+ pg_ctlcluster "${PGVERSION}" test restart
57+
58+ - name : Script
59+ run : |
60+ pg_travis_test
You can’t perform that action at this time.
0 commit comments