Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-pg_tracing-pgxn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- id: dist
name: Bundle the Release
run: make dist >> "$GITHUB_OUTPUT"
run: make -s dist >> "$GITHUB_OUTPUT"

- name: Release on PGXN
env:
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ RUN mkdir src
# Copy sources and compile
COPY --chown=postgres common.mk ./
COPY --chown=postgres Makefile ./
COPY --chown=postgres Makefile.dist ./
COPY --chown=postgres META.json.in ./
COPY --chown=postgres typedefs.list ./
COPY --chown=postgres *.sql ./
COPY --chown=postgres pg_tracing.control ./
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pgindent: typedefs.list
pgindent --typedefs=typedefs.list src/*.c src/*.h

# DOCKER BUILDS
TEST_CONTAINER_NAME = pg_tracing_test_$(PG_VERSION)
TEST_CONTAINER_NAME = pg_tracing_test
BUILD_TEST_TARGETS = $(patsubst %,build-test-pg%,$(PG_VERSIONS))
DOCKER_RUN_OPTS = --rm --name $(TEST_CONTAINER_NAME) $(TEST_CONTAINER_NAME):pg$(PG_VERSION)

Expand Down
2 changes: 2 additions & 0 deletions packages/deb.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ RUN mkdir src
# Copy sources and compile
COPY --chown=postgres common.mk ./
COPY --chown=postgres Makefile ./
COPY --chown=postgres Makefile.dist ./
COPY --chown=postgres META.json.in ./
COPY --chown=postgres *.sql ./
COPY --chown=postgres pg_tracing.control ./
COPY --chown=postgres ./src/*.c ./src
Expand Down