Skip to content

Commit

Permalink
dont use docker arg if running CROSSED_TRACING_LIBRARIES tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wconti27 committed Oct 24, 2024
1 parent 06e050b commit f1795b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,11 @@ jobs:
docker image list
- name: Run scenario
run: |
./run.sh ++docker ${{ matrix.scenario }} ${{matrix.scenario == env.FORCE_TESTS_SCENARIO && env.FORCE_TESTS || ''}}
if [ ${{ matrix.scenario }} != "CROSSED_TRACING_LIBRARIES" ]; then
./run.sh ++docker ${{ matrix.scenario }} ${{matrix.scenario == env.FORCE_TESTS_SCENARIO && env.FORCE_TESTS || ''}}
else
./run.sh ${{ matrix.scenario }} ${{matrix.scenario == env.FORCE_TESTS_SCENARIO && env.FORCE_TESTS || ''}}
fi
env:
DD_API_KEY: ${{ secrets.DD_APPSEC_SYSTEM_TESTS_API_KEY }}
SYSTEM_TESTS_AWS_ACCESS_KEY_ID: ${{ secrets.SYSTEM_TESTS_IDM_AWS_ACCESS_KEY_ID }}
Expand Down

0 comments on commit f1795b5

Please sign in to comment.