Skip to content

Commit bee2858

Browse files
committed
Merge remote-tracking branch 'origin/main' into upgrade_CI
2 parents 7828bcd + 27c2c3b commit bee2858

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/smoke-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ jobs:
7474
psql -c "INSERT INTO test_geometry_table (geom) VALUES (ST_GeomFromText('POINT(0 0)', 4326));"
7575
psql -c "SELECT * FROM test_geometry_table;"
7676
77+
echo "Test zombodb Extension"
7778
psql -c "CREATE EXTENSION zombodb;"
78-
psql -c "SELECT * FROM pg_extension WHERE extname = 'zombodb';"
79+
psql -c "SELECT zdb.internal_version();"
7980
8081
echo "Test pg_repack Extension"
8182
psql -c "CREATE EXTENSION pg_repack;"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN set -eux \
142142
set -eux ; \
143143
export GEOS_ALPINE_VER=3.11 ; \
144144
export GDAL_ALPINE_VER=3.6.4-r4 ; \
145-
export PROJ_ALPINE_VER=9.2.0-r0 ; \
145+
export PROJ_ALPINE_VER=9.2 ; \
146146
elif [ $(printf %.1s "$POSTGIS_VERSION") == 2 ]; then \
147147
set -eux ; \
148148
export GEOS_ALPINE_VER=3.8 ; \

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Bootstrapped from [TimescaleDB](https://github.com/timescale/timescaledb-docker)
1818

1919
### Usage with Compose
2020

21-
```yaml
21+
```yam
2222
version: '3.6'
2323
services:
2424
warpsql:
@@ -80,10 +80,6 @@ Once the environment is ready, you can start working on the project.
8080
- Create a pull request from your forked repository to the main WarpSQL repository.
8181
- We welcome contributions from the community and appreciate your support in improving WarpSQL!
8282

83-
Install the project dependencies by running the following command in the terminal:
84-
85-
```pip install -r requirements.txt```
86-
8783
### Ensure CI passes ![](https://img.shields.io/badge/CI-Passing-brightgreen)
8884

8985
Before merging any contributions or changes, it's essential to ensure that the continuous integration (CI) tests pass successfully. CI helps maintain code quality standards and prevents the introduction of regressions. To ensure a smooth integration process, follow these steps:

0 commit comments

Comments
 (0)