chore:Add DD_DURABLE_CROSS_INVOCATION_TRACING_ENABLED explanation in README.md #844
This file contains hidden or 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: System Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| schedule: | |
| - cron: '00 03 * * *' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build layer | |
| run: | | |
| ARCH=amd64 PYTHON_VERSION=3.13 ./scripts/build_layers.sh | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: .layers/datadog_lambda_py-amd64-3.13.zip | |
| name: binaries | |
| system-tests: | |
| needs: | |
| - build | |
| uses: DataDog/system-tests/.github/workflows/system-tests.yml@main | |
| permissions: | |
| contents: read | |
| id-token: write | |
| with: | |
| library: python_lambda | |
| binaries_artifact: binaries | |
| scenarios_groups: tracer_release | |
| skip_empty_scenarios: ${{ github.event_name == 'pull_request' }} | |
| push_to_test_optimization: true |