v6.9.0 proposal #40585
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: [master, mq-working-branch-master-*] | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 4 * * * | |
| concurrency: | |
| # this ensures that only one workflow runs at a time for a given branch on pull requests | |
| group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_id || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-artifacts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout dd-trace-js | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| path: dd-trace-js | |
| - name: Pack dd-trace-js | |
| run: mkdir -p ./binaries && echo "/binaries/$(npm pack --silent --pack-destination ./binaries ./dd-trace-js)" > ./binaries/nodejs-load-from-npm | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: system_tests_binaries | |
| path: ./binaries/**/* | |
| main: | |
| needs: | |
| - build-artifacts | |
| uses: DataDog/system-tests/.github/workflows/system-tests.yml@main | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| with: | |
| library: nodejs | |
| binaries_artifact: system_tests_binaries | |
| desired_execution_time: 300 # 5 minutes | |
| scenarios_groups: tracer-release | |
| excluded_scenarios: APM_TRACING_E2E_OTEL,APM_TRACING_E2E_SINGLE_SPAN # require AWS and datadog credentials | |
| parametric_job_count: 8 | |
| skip_empty_scenarios: ${{ github.ref != 'refs/heads/master' && github.event_name != 'schedule' }} | |
| push_to_test_optimization: ${{ github.actor != 'dependabot[bot]' }} |