From 9e55e65ac5eb6ff645880ee253a33f6ab138b615 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 14 Aug 2025 11:54:52 -0600 Subject: Fix the broken build by running pg as a separate container. Improve shell scripts and remove /sparkles/restore endpoint - Add error handling and debugging to shell scripts with `set -e` and `DEBUG` flag - Ensure scripts run from project root with `cd "$(dirname "$0")/.."` - Remove `/sparkles/restore` endpoint from public routes and Envoy config - Add Postgres test container support for integration tests - Update CI configuration with newer Runway version and improved test setup - Simplify Makefile by removing redundant commands ------- :robot: Commit message generated by GitLab Duo --- .../testcontainers/testcontainers-go/modules/postgres/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 vendor/github.com/testcontainers/testcontainers-go/modules/postgres/Makefile (limited to 'vendor/github.com/testcontainers/testcontainers-go/modules/postgres/Makefile') diff --git a/vendor/github.com/testcontainers/testcontainers-go/modules/postgres/Makefile b/vendor/github.com/testcontainers/testcontainers-go/modules/postgres/Makefile new file mode 100644 index 0000000..225f0c4 --- /dev/null +++ b/vendor/github.com/testcontainers/testcontainers-go/modules/postgres/Makefile @@ -0,0 +1,5 @@ +include ../../commons-test.mk + +.PHONY: test +test: + $(MAKE) test-postgres -- cgit v1.2.3