Skip to content

Commit 43ed63e

Browse files
committed
Refactor Docker and CI configurations
- Removed the creation of `memory_config.yaml` from the CI workflow to streamline the process. - Updated Docker Compose files to mount `config.yml` for model registry and memory settings in both services. - Added new dependencies for Google API clients in `uv.lock` to support upcoming features.
1 parent 686f357 commit 43ed63e

File tree

3 files changed

+1784
-1611
lines changed

3 files changed

+1784
-1611
lines changed

.github/workflows/robot-tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ jobs:
110110
echo "LLM_PROVIDER: $LLM_PROVIDER"
111111
echo "TRANSCRIPTION_PROVIDER: $TRANSCRIPTION_PROVIDER"
112112
113-
# Create memory_config.yaml from template (file is gitignored)
114-
echo "Creating memory_config.yaml from template..."
115-
cp memory_config.yaml.template memory_config.yaml
116-
117113
# Clean any existing test containers for fresh start
118114
echo "Cleaning up any existing test containers..."
119115
docker compose -f docker-compose-test.yml down -v || true

backends/advanced/docker-compose-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ services:
1414
- ./data/test_audio_chunks:/app/audio_chunks
1515
- ./data/test_debug_dir:/app/debug_dir
1616
- ./data/test_data:/app/data
17+
- ../../config.yml:/app/config.yml:ro # Mount config.yml for model registry and memory settings
1718
environment:
1819
# Override with test-specific settings
1920
- MONGODB_URI=mongodb://mongo-test:27017/test_db
@@ -128,6 +129,7 @@ services:
128129
- ./data/test_audio_chunks:/app/audio_chunks
129130
- ./data/test_debug_dir:/app/debug_dir
130131
- ./data/test_data:/app/data
132+
- ../../config.yml:/app/config.yml:ro # Mount config.yml for model registry and memory settings
131133
environment:
132134
# Same environment as backend
133135
- MONGODB_URI=mongodb://mongo-test:27017/test_db

0 commit comments

Comments
 (0)