Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix ci to run on v3 docker compose langfuse server from main branch #475

Merged
merged 5 commits into from
Dec 4, 2024
Merged
Changes from 3 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
cd ./langfuse-server

echo "::group::Run langfuse server"
TELEMETRY_ENABLED=false docker compose -f docker-compose.v3preview.yml up -d postgres
TELEMETRY_ENABLED=false docker compose up -d postgres
echo "::endgroup::"

echo "::group::Logs from langfuse server"
TELEMETRY_ENABLED=false docker compose -f docker-compose.v3preview.yml logs
TELEMETRY_ENABLED=false docker compose logs
echo "::endgroup::"

echo "::group::Install dependencies (necessary to run seeder)"
Expand All @@ -89,7 +89,7 @@ jobs:
rm -rf .env

echo "::group::Run server"
TELEMETRY_ENABLED=false CLICKHOUSE_CLUSTER_ENABLED=false LANGFUSE_ASYNC_INGESTION_PROCESSING=false LANGFUSE_ASYNC_CLICKHOUSE_INGESTION_PROCESSING=false LANGFUSE_READ_FROM_POSTGRES_ONLY=true LANGFUSE_READ_FROM_CLICKHOUSE_ONLY=false docker compose -f docker-compose.v3preview.yml up -d
TELEMETRY_ENABLED=false LANGFUSE_CLICKHOUSE_INGESTION_ENABLED=false LANGFUSE_READ_FROM_POSTGRES_ONLY=true LANGFUSE_READ_FROM_CLICKHOUSE_ONLY=false REDIS_HOST="" docker compose up -d
echo "::endgroup::"

# Add this step to check the health of the container
Expand Down
Loading