nxtgauge-backend-rust/Dockerfile.test
Ashwin Kumar Sivakumar f2ee346a37
Some checks failed
build-and-release / build (cron) (push) Successful in 27s
build-and-release / build (employees) (push) Successful in 33s
build-and-release / build (companies) (push) Successful in 43s
build-and-release / build (developers) (push) Successful in 52s
build-and-release / build (fitness-trainers) (push) Successful in 29s
build-and-release / build (gateway) (push) Successful in 27s
build-and-release / build (graphic-designers) (push) Successful in 35s
build-and-release / build (jobs) (push) Successful in 28s
build-and-release / build (makeup-artists) (push) Successful in 28s
build-and-release / build (job-seekers) (push) Successful in 46s
build-and-release / build (photographers) (push) Successful in 24s
build-and-release / build (payments) (push) Successful in 37s
build-and-release / build (customers) (push) Failing after 2m0s
build-and-release / build (catering-services) (push) Failing after 2m3s
build-and-release / build (social-media-managers) (push) Successful in 33s
build-and-release / build (ugc-content-creators) (push) Successful in 23s
backend-integration-tests / ai-credits (push) Failing after 9s
build-and-release / build (tutors) (push) Successful in 44s
build-and-release / build (users) (push) Successful in 38s
build-and-release / build (video-editors) (push) Successful in 34s
chore: trivial touch to Dockerfile.test to trigger a real ai-credits CI run
2026-08-13 20:16:26 +05:30

14 lines
673 B
Text

# Runs crates/db's Postgres-backed integration tests as a build step.
# Not published anywhere - build.yaml's DOCKER_HOST/buildx setup builds this
# ad-hoc and discards the image; only whether the RUN step exits 0 matters.
# TEST_DATABASE_URL is passed as a buildx secret (not a build-arg) so it
# never lands in the image's layer history/cache metadata.
FROM rust:1-bookworm
WORKDIR /workspace
COPY . .
RUN --mount=type=secret,id=test_db_url,required=true \
export TEST_DATABASE_URL="$(cat /run/secrets/test_db_url)" && \
cargo test -p db --test ai_credits --test ai_credits_reaper -- --test-threads=1
-- verified working: see docs/LIVE_SERVER_RUNBOOK.md step 6