Skip to content

Commit

Permalink
Configure parametric test to get the cpp tracer in same way as system…
Browse files Browse the repository at this point in the history
…-tests (#86)

* Configure parametric test to get the cpp tracer in same way as system-tests
  • Loading branch information
robertomonteromiguel authored Jan 8, 2024
1 parent 2124de5 commit cc703b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,15 @@ jobs:
python3.9 -m pip install wheel
python3.9 -m pip install -r requirements.txt
sudo ln -sf /usr/bin/python3.9 /usr/bin/python
- run:
name: Run
name: Run Parametric tests
environment:
TEST_LIBRARY: cpp
DD_TRACE_CPP_COMMIT: << pipeline.git.revision >>
command: cd system-tests && ./build.sh -i runner && ./run.sh PARAMETRIC --log-cli-level=DEBUG
command: |
echo "https://github.com/DataDog/dd-trace-cpp@$DD_TRACE_CPP_COMMIT" > ~/project/system-tests/binaries/cpp-load-from-git
cd system-tests && ./build.sh -i runner && ./run.sh PARAMETRIC --log-cli-level=DEBUG
- run:
name: Collect artifacts
command: tar -cvzf logs_cpp_parametric_dev.tar.gz -C system-tests logs_parametric
Expand Down

0 comments on commit cc703b2

Please sign in to comment.