Skip to content

Commit

Permalink
Stop auto building nightly image
Browse files Browse the repository at this point in the history
The nightly docker image is sporadically useful for debugging purposes,
but not really something we should advertise as a first-call
installation platform.

This commit stops advertising the build, and also removes the
auto-build; we can trigger the build manually when we need a version.
  • Loading branch information
JLockerman committed Mar 28, 2022
1 parent b2d5cc8 commit 6c06b25
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ name: nightly
on:
pull_request:
paths:
- 'docker/nightly/**'
- '.github/workflows/nightly_build.yml'
- 'docker/patch/**'
- '.github/workflows/patch_build.yml'
workflow_dispatch:
schedule:
# we build at 8am UTC, 3am Eastern, midnight Pacific
- cron: '0 8 * * 1-4'

jobs:
build:
Expand Down
4 changes: 1 addition & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ in this repository at [`docs`](https://github.com/timescale/timescaledb-toolkit/

## 🖥 Try It Out ##

The extension comes pre-installed on all [Timescale Cloud](https://www.timescale.com/products#timescale-cloud) instances, and also on our full-featured [`timescale/timescaledb-ha` docker image](https://hub.docker.com/r/timescale/timescaledb-ha).

We also provide nightly builds as a docker images in `timescaledev/timescaledb-toolkit:nightly`.
The extension comes pre-installed on all [Timescale Cloud](https://www.timescale.com/products#timescale-cloud) instances and also on our full-featured [`timescale/timescaledb-ha` docker image](https://hub.docker.com/r/timescale/timescaledb-ha).

All versions of the extension contain experimental features in the `toolkit_experimental`, schema see [our docs section on experimental features](/docs/README.md#tag-notes) for
more details.
Expand Down
2 changes: 1 addition & 1 deletion docker/nightly/Dockerfile → docker/patch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ENV PATH="/build/.cargo/bin:${PATH}"
RUN set -ex \
&& rm -rf "${CARGO_HOME}/registry" "${CARGO_HOME}/git" \
&& chown postgres:postgres -R "${CARGO_HOME}" \
&& cargo install cargo-pgx \
&& cargo install cargo-pgx --version '0.2' \
# initdb fails as root so generate the correct config ourselves
# && cargo pgx init --pg13 /usr/lib/postgresql/13/bin/pg_config
&& mkdir -p /root/.pgx \
Expand Down

0 comments on commit 6c06b25

Please sign in to comment.