Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new ST scenarios for rasp #4883

Merged
merged 7 commits into from
Nov 18, 2024
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ jobs:
name: system_tests_binaries
path: ./binaries/**/*

get-essential-scenarios:
get-scenarios:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed because we are not getting only essential scenarios now.

name: Get parameters
uses: DataDog/system-tests/.github/workflows/compute-workflow-parameters.yml@main
with:
library: nodejs
scenarios_groups: essentials
scenarios_groups: essentials,appsec_rasp

system-tests:
runs-on: ${{ contains(fromJSON('["CROSSED_TRACING_LIBRARIES", "INTEGRATIONS"]'), matrix.scenario) && 'ubuntu-latest-16-cores' || 'ubuntu-latest' }}
needs:
- get-essential-scenarios
- get-scenarios
strategy:
matrix:
weblog-variant: ${{fromJson(needs.get-essential-scenarios.outputs.endtoend_weblogs)}}
scenario: ${{fromJson(needs.get-essential-scenarios.outputs.endtoend_scenarios)}}
weblog-variant: ${{fromJson(needs.get-scenarios.outputs.endtoend_weblogs)}}
scenario: ${{fromJson(needs.get-scenarios.outputs.endtoend_scenarios)}}

env:
TEST_LIBRARY: nodejs
Expand Down
Loading