Skip to content

Commit 2dd7ab2

Browse files
committed
chore(stacks): remove influxdb
1 parent f5201a6 commit 2dd7ab2

3 files changed

Lines changed: 2 additions & 35 deletions

File tree

scripts/checker.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,6 @@
9797
"owner": "helm",
9898
"match": "^v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$",
9999
},
100-
"influxdb": {
101-
"name": "influxdb",
102-
"type": "github",
103-
"owner": "influxdata",
104-
"match": "^v[2-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$",
105-
},
106100
"ini-file": {
107101
"name": "ini-file",
108102
"type": "github",

stacks/influxdb/build.sh

Lines changed: 0 additions & 28 deletions
This file was deleted.

stacks/postgresql/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Load stack utils
44
. /usr/bin/stack-utils
5+
PG_CRON_VERSION=$(curl -Ls https://github.com/citusdata/pg_cron/tags|grep /citusdata/pg_cron/releases/tag/ | sed -E 's/.*\/citusdata\/pg_cron\/releases\/tag\/(v[0-9\.]{1,}(-rc.[0-9]{1,})?)".*/\1/g' | head -1)
56
POSTGIS_VERSION=$(curl -Ls https://github.com/postgis/postgis/tags|grep /postgis/postgis/releases/tag/ | sed -E 's/.*\/postgis\/postgis\/releases\/tag\/([0-9\.]{1,}(-rc.[0-9]{1,})?)".*/\1/g' | head -1)
67
TIMESCALE_VERSION=$(curl -Ls https://github.com/timescale/timescaledb/releases|grep /timescale/timescaledb/releases/tag/ | sed -E 's/.*\/timescale\/timescaledb\/releases\/tag\/([0-9\.]{1,})".*/\1/g' | head -1)
78
# Implement build function
@@ -88,7 +89,7 @@ function build() {
8889
# timescaledb
8990
curl -sSL "https://github.com/timescale/timescaledb/archive/refs/tags/${TIMESCALE_VERSION}.tar.gz" | tar -xz &&
9091
cd timescaledb-"${TIMESCALE_VERSION}" && \
91-
cmake -DPG_CONFIG=/opt/drycc/postgresql/"${PG_MAJOR}"/bin/pg_config -DAPACHE_ONLY=true && \
92+
cmake -DPG_CONFIG=/opt/drycc/postgresql/"${PG_MAJOR}"/bin/pg_config && \
9293
make && \
9394
make install && \
9495
cd - && \

0 commit comments

Comments
 (0)