Skip to content

Commit cc703b2

Browse files
Configure parametric test to get the cpp tracer in same way as system-tests (#86)
* Configure parametric test to get the cpp tracer in same way as system-tests
1 parent 2124de5 commit cc703b2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,15 @@ jobs:
105105
python3.9 -m pip install wheel
106106
python3.9 -m pip install -r requirements.txt
107107
sudo ln -sf /usr/bin/python3.9 /usr/bin/python
108+
108109
- run:
109-
name: Run
110+
name: Run Parametric tests
110111
environment:
111112
TEST_LIBRARY: cpp
112113
DD_TRACE_CPP_COMMIT: << pipeline.git.revision >>
113-
command: cd system-tests && ./build.sh -i runner && ./run.sh PARAMETRIC --log-cli-level=DEBUG
114+
command: |
115+
echo "https://github.com/DataDog/dd-trace-cpp@$DD_TRACE_CPP_COMMIT" > ~/project/system-tests/binaries/cpp-load-from-git
116+
cd system-tests && ./build.sh -i runner && ./run.sh PARAMETRIC --log-cli-level=DEBUG
114117
- run:
115118
name: Collect artifacts
116119
command: tar -cvzf logs_cpp_parametric_dev.tar.gz -C system-tests logs_parametric

0 commit comments

Comments
 (0)