We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ef69ef commit b7ac411Copy full SHA for b7ac411
scripts/validate-components.sh
@@ -5,7 +5,7 @@
5
6
# This script verifies that all components declared in manifest.yaml files are
7
# defined in the builder-config.yaml from the opentelemetry-collector-contrib
8
-# repository, ensuring they were built and tested successfully.
+# repository, or ebpf-profiler, ensuring they were built and tested successfully.
9
10
set -euo pipefail
11
@@ -35,6 +35,8 @@ valid_components="$(
35
| awk '{print $1}' \
36
| sort -u
37
)"
38
+valid_components+='
39
+go.opentelemetry.io/ebpf-profiler'
40
41
if [[ -z "$valid_components" ]]; then
42
echo "Error: No valid 'gomod' entries found in builder-config.yaml!"
0 commit comments