Skip to content

Commit 66a1481

Browse files
committed
fixup!
1 parent 7f540b3 commit 66a1481

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

.gitlab-ci.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
stages:
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"

.gitlab/one-pipeline.locked.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
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

BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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",

bin/supported-configurations

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ BINARY="$SCRIPT_DIR/.supported-configurations"
99

1010
compiler=${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

2119
exec "$BINARY" "$@"

0 commit comments

Comments
 (0)