Run Datadog APM Transport Stress Tests #18996
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Run Datadog APM Transport Stress Tests' | |
on: | |
workflow_dispatch: | |
schedule: | |
# Every hour | |
- cron: '0 * * * *' | |
jobs: | |
run_stress_tests: | |
runs-on: ubuntu-latest | |
env: | |
AGENT_DOCKERFILE: realagent | |
DD_API_KEY: ${{ secrets.DD_SHARED_TESTS_API_KEY }} | |
TRACER: python | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: DataDog/apm-transport-stress-tests | |
- name: Build | |
run: ./build.sh "${TRACER}" "${AGENT_DOCKERFILE}" | |
- name: Test TCPIP | |
run: ./run.sh tcpip | |
env: | |
RUN_ID: ${{ github.run_id }} | |
- name: Test UDS | |
run: ./run.sh uds | |
env: | |
RUN_ID: ${{ github.run_id }} |