Taegyun Kim
Taegyun Kim
## Checklist - [ ] The PR description includes an overview of the change - [ ] The PR description articulates the motivation for the change - [ ] The...
Parallelize building wheel using unique identifier used by cibuildwheel, which is a combination of python version, target OS, and target architecture. We've been building wheels in parallel across OS's used...
## Checklist - [ ] Change(s) are motivated and described in the PR description - [ ] Testing strategy is described if automated tests are not included in the PR...
## Motivation `install_ddtrace.sh` is run within a docker container and `CMAKE_BUILD_PARALLEL_LEVEL` didn't seem to be set. Setting it here because setting it by default in dd-trace-py caused problems with circle...
## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates...
## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates...
## Checklist - [ ] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description...
## Checklist - [ ] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description...
Tested locally 1. modify docker-compose.yml ``` testrunner: build: context: ./docker dockerfile: Dockerfile ``` 2. run tests using `riot run` ## Checklist - [x] PR author has checked that all the...
Sometimes we forget to set `CMAKE_BUILD_PARALLEL_LEVEL` as in https://github.com/DataDog/system-tests/pull/2876/files#diff-c8613d72fa796e8b51855229a46980f43859107cc8f8251839d13b11de883e15 or underlying tool makes it hard to set it correctly https://github.com/DataDog/dd-trace-py/pull/10129#discussion_r1708158004 This shaves off about ~1min from system-tests-build. Looks like build_wheels...