Some checks failed
build-and-release / build (catering-services) (push) Successful in 13s
build-and-release / build (cron) (push) Successful in 13s
build-and-release / build (companies) (push) Successful in 16s
build-and-release / build (customers) (push) Successful in 28s
build-and-release / build (fitness-trainers) (push) Successful in 19s
build-and-release / build (graphic-designers) (push) Successful in 18s
build-and-release / build (gateway) (push) Successful in 27s
build-and-release / build (jobs) (push) Successful in 15s
build-and-release / build (makeup-artists) (push) Successful in 13s
build-and-release / build (job-seekers) (push) Successful in 29s
build-and-release / build (payments) (push) Successful in 20s
build-and-release / build (social-media-managers) (push) Successful in 13s
build-and-release / build (photographers) (push) Successful in 26s
build-and-release / build (ugc-content-creators) (push) Successful in 14s
build-and-release / build (users) (push) Successful in 14s
build-and-release / build (video-editors) (push) Successful in 14s
build-and-release / build (tutors) (push) Successful in 36s
build-and-release / build (employees) (push) Failing after 1m34s
build-and-release / build (developers) (push) Failing after 1m45s
backend-integration-tests / ai-credits (push) Failing after 54s
14 lines
667 B
Text
14 lines
667 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
|
|
# re-run: nxtgauge_test now has seed data (free plan)
|