mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
db8a59bd3d
* Durable Agent samples and automated validation for non-Azure Functions * Update test projects * fix file encoding * Remove AgentThreadMetadata usage * Absorb breaking change from #3152 * Absorb newer breaking changes (AgentRunResponse --> AgentResponse) * Absorb more breaking changes (see #3222) * Improve integration test reliability (isolated task hubs, etc.) * Fix flakey streaming test --------- Co-authored-by: Mark Wallace <127216156+markwallace-microsoft@users.noreply.github.com>
49 lines
2.3 KiB
YAML
49 lines
2.3 KiB
YAML
name: Azure Functions Integration Test Setup
|
|
description: Prepare local emulators and tools for Azure Functions integration tests
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Start Durable Task Scheduler Emulator
|
|
shell: bash
|
|
run: |
|
|
if [ "$(docker ps -aq -f name=dts-emulator)" ]; then
|
|
echo "Stopping and removing existing Durable Task Scheduler Emulator"
|
|
docker rm -f dts-emulator
|
|
fi
|
|
echo "Starting Durable Task Scheduler Emulator"
|
|
docker run -d --name dts-emulator -p 8080:8080 -p 8082:8082 -e DTS_USE_DYNAMIC_TASK_HUBS=true mcr.microsoft.com/dts/dts-emulator:latest
|
|
echo "Waiting for Durable Task Scheduler Emulator to be ready"
|
|
timeout 30 bash -c 'until curl --silent http://localhost:8080/healthz; do sleep 1; done'
|
|
echo "Durable Task Scheduler Emulator is ready"
|
|
- name: Start Azurite (Azure Storage emulator)
|
|
shell: bash
|
|
run: |
|
|
if [ "$(docker ps -aq -f name=azurite)" ]; then
|
|
echo "Stopping and removing existing Azurite (Azure Storage emulator)"
|
|
docker rm -f azurite
|
|
fi
|
|
echo "Starting Azurite (Azure Storage emulator)"
|
|
docker run -d --name azurite -p 10000:10000 -p 10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite
|
|
echo "Waiting for Azurite (Azure Storage emulator) to be ready"
|
|
timeout 30 bash -c 'until curl --silent http://localhost:10000/devstoreaccount1; do sleep 1; done'
|
|
echo "Azurite (Azure Storage emulator) is ready"
|
|
- name: Start Redis
|
|
shell: bash
|
|
run: |
|
|
if [ "$(docker ps -aq -f name=redis)" ]; then
|
|
echo "Stopping and removing existing Redis"
|
|
docker rm -f redis
|
|
fi
|
|
echo "Starting Redis"
|
|
docker run -d --name redis -p 6379:6379 redis:latest
|
|
echo "Waiting for Redis to be ready"
|
|
timeout 30 bash -c 'until docker exec redis redis-cli ping | grep -q PONG; do sleep 1; done'
|
|
echo "Redis is ready"
|
|
- name: Install Azure Functions Core Tools
|
|
shell: bash
|
|
run: |
|
|
echo "Installing Azure Functions Core Tools"
|
|
npm install -g azure-functions-core-tools@4 --unsafe-perm true
|
|
func --version
|