File tree Expand file tree Collapse file tree 4 files changed +26
-8
lines changed
Expand file tree Collapse file tree 4 files changed +26
-8
lines changed Original file line number Diff line number Diff line change 11stages :
2+ - shared-pipeline
23 - benchmarks
34 - benchmarks-report
45
5- include : " .gitlab/benchmarks.yml"
6+ validate_supported_configurations_local_file :
7+ extends : .validate_supported_configurations_local_file
8+ variables :
9+ LOCAL_JSON_PATH : " metadata/supported-configurations.json"
10+
11+ update_central_configurations_version_range :
12+ extends : .update_central_configurations_version_range
13+ variables :
14+ LOCAL_REPO_NAME : " dd-trace-cpp"
15+ LOCAL_JSON_PATH : " metadata/supported-configurations.json"
16+ LANGUAGE_NAME : " cpp"
17+ MULTIPLE_RELEASE_LINES : " false"
18+
19+ include :
20+ - local : " .gitlab/one-pipeline.locked.yml"
21+ - local : " .gitlab/benchmarks.yml"
Original file line number Diff line number Diff line change 1+ # This file should be auto-generated soon.
2+ include :
3+ - remote : https://gitlab-templates.ddbuild.io/libdatadog/one-pipeline/ca/fbfa24e9dd887ed24ce65e71f2e41562c809f40cfc26489705b32406de7e096f/one-pipeline.yml
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ cc_library(
109109 "include/datadog/dict_reader.h" ,
110110 "include/datadog/dict_writer.h" ,
111111 "include/datadog/environment.h" ,
112+ "include/datadog/environment_registry.h" ,
112113 "include/datadog/error.h" ,
113114 "include/datadog/event_scheduler.h" ,
114115 "include/datadog/expected.h" ,
Original file line number Diff line number Diff line change @@ -9,13 +9,11 @@ BINARY="$SCRIPT_DIR/.supported-configurations"
99
1010compiler=${CXX:- c++}
1111
12- if [ ! -x " $BINARY " ] || [ " $SOURCE " -nt " $BINARY " ] ; then
12+ (
1313 # `CXX` may contain wrappers/flags (e.g. "ccache c++").
14- (
15- # shellcheck disable=SC2086
16- set -- $compiler
17- " $@ " -std=c++17 -O2 -I" $REPO_ROOT /src/datadog" " $SOURCE " -o " $BINARY "
18- )
19- fi
14+ # shellcheck disable=SC2086
15+ set -- $compiler
16+ " $@ " -std=c++17 -O2 -I" $REPO_ROOT /src/datadog" " $SOURCE " -o " $BINARY "
17+ )
2018
2119exec " $BINARY " " $@ "
You can’t perform that action at this time.
0 commit comments