Improve nextjs tests flakyness #12778
Workflow file for this run
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: System Tests | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: [master] | |
workflow_dispatch: {} | |
schedule: | |
- cron: '00 04 * * 2-6' | |
jobs: | |
get-essential-scenarios: | |
runs-on: ubuntu-latest | |
outputs: | |
scenario: ${{ steps.parse-yml.outputs.scenario }} | |
steps: | |
- name: Checkout system tests | |
uses: actions/checkout@v4 | |
with: | |
repository: 'DataDog/system-tests' | |
- name: Get Essential Scenarios | |
id: parse-yml | |
run: yq -o tsv .TRACER_ESSENTIAL_SCENARIOS ./scenario_groups.yml | xargs node -p "x=process.argv;x.shift();x.push('CROSSED_TRACING_LIBRARIES');'scenario='+JSON.stringify(x)" >> $GITHUB_OUTPUT | |
system-tests: | |
runs-on: ubuntu-latest | |
needs: | |
- get-essential-scenarios | |
strategy: | |
matrix: | |
weblog-variant: | |
- express4 | |
- express4-typescript | |
- nextjs | |
scenario: ${{fromJson(needs.get-essential-scenarios.outputs.scenario)}} | |
env: | |
TEST_LIBRARY: nodejs | |
WEBLOG_VARIANT: ${{ matrix.weblog-variant }} | |
DD_API_KEY: ${{ secrets.DD_API_KEY }} | |
steps: | |
- name: Checkout system tests | |
uses: actions/checkout@v4 | |
with: | |
repository: 'DataDog/system-tests' | |
- name: Checkout dd-trace-js | |
uses: actions/checkout@v4 | |
with: | |
path: 'binaries/dd-trace-js' | |
- name: Build weblog | |
run: ./build.sh -i weblog | |
- name: Build runner | |
uses: ./.github/actions/install_runner | |
- name: Build agent | |
id: build-agent | |
run: ./build.sh -i agent | |
- name: Run scenario ${{ matrix.scenario }} | |
run: ./run.sh ${{ matrix.scenario }} | |
- name: Compress artifact | |
if: ${{ always() }} | |
run: tar -czvf artifact.tar.gz $(ls | grep logs) | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: logs_${{ matrix.weblog-variant }}-${{ matrix.scenario }} | |
path: artifact.tar.gz | |
parametric: | |
runs-on: ubuntu-latest | |
env: | |
TEST_LIBRARY: nodejs | |
steps: | |
- name: Checkout system tests | |
uses: actions/checkout@v4 | |
with: | |
repository: 'DataDog/system-tests' | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Checkout dd-trace-js | |
uses: actions/checkout@v4 | |
with: | |
path: 'binaries/dd-trace-js' | |
- name: Build | |
run: ./build.sh -i runner | |
- name: Run | |
run: ./run.sh PARAMETRIC | |
- name: Compress artifact | |
if: ${{ always() }} | |
run: tar -czvf artifact.tar.gz $(ls | grep logs) | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: logs_parametric | |
path: artifact.tar.gz |