Skip to content

Commit 27ad09f

Browse files
Try
1 parent 456992f commit 27ad09f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.circleci/config.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ defaults_with_postgres: &defaults_with_postgres
3232
<<: *defaults
3333
docker:
3434
- *default_docker
35-
# https://hub.docker.com/r/timescale/timescaledb-ha
36-
- image: timescale/timescaledb-ha:pg14
35+
# See https://github.com/etalab/transport_deploy/issues/50
36+
- image: postgis/postgis:14-3.1-alpine
3737
environment:
3838
POSTGRES_USER: root
3939
POSTGRES_DB: transport_test
@@ -45,6 +45,17 @@ jobs:
4545
steps:
4646
- checkout
4747

48+
- run:
49+
name: Install TimescaleDB
50+
command: |
51+
curl -JLO https://github.com/timescale/timescaledb/archive/refs/tags/2.19.3.zip
52+
unzip timescaledb-2.19.3.zip
53+
cd timescaledb-2.19.3
54+
./bootstrap
55+
cd build && make
56+
make install
57+
pg_config
58+
4859
- run:
4960
name: Move transport-tools folder
5061
command: mv /transport-tools ./transport-tools

0 commit comments

Comments
 (0)