Skip to content

Commit 35bff74

Browse files
authored
[CI] Don't apply spec patch if submodule is at HEAD (#6047)
1 parent 4350b1c commit 35bff74

File tree

1 file changed

+50
-23
lines changed

1 file changed

+50
-23
lines changed

scripts/content-modules/adjust-pages.pl

+50-23
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
otlp: 1.5.0
2323
semconv: 1.29.0
2424
);
25+
my %versFromRepo = %versions; # Use declared versions a defaults
2526
my $otelSpecVers = $versions{'spec:'};
2627
my $otlpSpecVers = $versions{'otlp:'};
2728
my $semconvVers = $versions{'semconv:'};
@@ -47,8 +48,8 @@ ()
4748
# Sample front-matter patch:
4849
#
4950
# } elsif ($ARGV =~ /otel\/specification\/logs\/api.md$/) {
50-
# $frontMatterFromFile .= "linkTitle: API\naliases: [bridge-api]\n";
51-
# printPatchInfoIf("2024-12-01-bridge-api", $otelSpecVers ne "1.39.0");
51+
# $frontMatterFromFile .= "linkTitle: API\naliases: [bridge-api]\n" if
52+
# applyPatchOrPrintMsgIf('2024-12-01-bridge-api', 'spec', '1.39.0');
5253
# }
5354

5455
my $titleMaybeQuoted = ($title =~ ':') ? "\"$title\"" : $title;
@@ -65,25 +66,53 @@ ()
6566
print "---\n";
6667
}
6768

68-
sub printPatchInfoIf($$) {
69-
my ($patchID, $specVersTest) = @_;
70-
print STDOUT "INFO [$patchID]: $0: remove obsolete patch code now that spec(s) have been updated.\n"
71-
if $specVersTest && !$patchMsgCount{$patchID}++;
69+
sub applyPatchOrPrintMsgIf($$$) {
70+
# Returns truthy if patch should be applied, otherwise prints message (once) as to why not.
71+
72+
my ($patchID, $versKey_, $targetVers) = @_;
73+
my $versKey = $versKey_ . ':';
74+
my $vers;
75+
76+
return 0 if $patchMsgCount{$patchID};
77+
78+
if (($vers = $versions{$versKey}) ne $targetVers) {
79+
print STDOUT "INFO: remove obsolete patch '$patchID' now that spec '$versKey_' is at v$vers, not v$targetVers - $0\n";
80+
} elsif (($vers = $versFromRepo{$versKey}) ne $targetVers) {
81+
print STDOUT "INFO [$patchID]: skipping patch '$patchID' since spec '$versKey_' submodule is at v$vers not v$targetVers - $0\n";
82+
} else {
83+
return 'Apply the patch';
84+
}
85+
$patchMsgCount{$patchID}++;
86+
return 0;
7287
}
7388

74-
sub patchAttrNaming($$) {
75-
my ($ARGV, $__) = @_;
76-
$_ = $__;
89+
sub patchAttrNaming() {
90+
return unless $ARGV =~ /^tmp\/otel\/specification/
91+
&& applyPatchOrPrintMsgIf('2025-01-22-attribute-naming', 'semconv', '1.29.0');
92+
7793
my $semconv_attr_naming = '(/docs/specs/semconv/general)/naming/';
78-
if ($ARGV =~ /^tmp\/otel\/specification/ && /$semconv_attr_naming/) {
79-
s|$semconv_attr_naming|$1/attribute-naming/|g;
80-
printPatchInfoIf("2025-01-22-attribute-naming", $semconvVers ne "1.29.0");
94+
s|$semconv_attr_naming|$1/attribute-naming/|g if /$semconv_attr_naming/;
95+
}
96+
97+
sub getVersFromRepo() {
98+
my $vers = qx(
99+
cd content-modules/semantic-conventions;
100+
git describe --tags 2>&1;
101+
);
102+
chomp($vers);
103+
104+
if ($?) {
105+
warn "WARNING: semconv repo: call to 'git describe' failed: '$vers'";
106+
} else {
107+
$vers =~ s/v//;
108+
$versFromRepo{'semconv:'} = $vers;
81109
}
82-
return $_;
83110
}
84111

85112
# main
86113

114+
getVersFromRepo();
115+
87116
while(<>) {
88117
# printf STDOUT "$ARGV Got: $_" if $gD;
89118

@@ -94,7 +123,7 @@ ($$)
94123
if (/^<!---? Hugo/) {
95124
while(<>) {
96125
last if /^-?-->/;
97-
$_ = patchAttrNaming($ARGV, $_); # TEMPORARY patch
126+
patchAttrNaming(); # TEMPORARY patch
98127
$frontMatterFromFile .= $_;
99128
}
100129
next;
@@ -119,11 +148,10 @@ ($$)
119148
## Semconv
120149

121150
if ($ARGV =~ /^tmp\/semconv/) {
122-
my $otel_spec_event_deprecation = '(opentelemetry-specification/blob/main/specification/logs)/event-(api|sdk).md';
123-
if (/$otel_spec_event_deprecation/) {
151+
if (applyPatchOrPrintMsgIf('2025-01-22-event-(api|sdk)', 'semconv', '1.29.0')) {
124152
# Cf. https://github.com/open-telemetry/opentelemetry-specification/pull/4359
125-
s|$otel_spec_event_deprecation\b|$1/|g;
126-
printPatchInfoIf("2025-01-22-event-(api|sdk)", $semconvVers ne "1.29.0");
153+
my $otel_spec_event_deprecation = '(opentelemetry-specification/blob/main/specification/logs)/event-(api|sdk).md';
154+
s|$otel_spec_event_deprecation\b|$1/|g if /$otel_spec_event_deprecation/;
127155
}
128156

129157
s|(\]\()/docs/|$1$specBasePath/semconv/|g;
@@ -135,13 +163,12 @@ ($$)
135163

136164
# SPECIFICATION custom processing
137165

138-
my $semconv_attr_naming_md = '(semantic-conventions/blob/main/docs/general)/naming.md(#\w+)?';
139-
if ($ARGV =~ /^tmp\/otel\/specification/ && /$semconv_attr_naming_md/) {
140-
s|$semconv_attr_naming_md\b|$1/attribute-naming.md|g;
141-
printPatchInfoIf("2025-01-22-attribute-naming.md", $semconvVers ne "1.29.0");
166+
if ($ARGV =~ /^tmp\/otel\/specification/ && applyPatchOrPrintMsgIf('2025-01-22-attribute-naming.md', 'semconv', '1.29.0')) {
167+
my $semconv_attr_naming_md = '(semantic-conventions/blob/main/docs/general)/naming.md(#\w+)?';
168+
s|$semconv_attr_naming_md\b|$1/attribute-naming.md|g if /$semconv_attr_naming_md/;
142169
}
143170

144-
$_ = patchAttrNaming($ARGV, $_); # TEMPORARY patch
171+
patchAttrNaming(); # TEMPORARY patch
145172

146173
s|\(https://github.com/open-telemetry/opentelemetry-specification\)|($specBasePath/otel/)|;
147174
s|(\]\()/specification/|$1$specBasePath/otel/)|;

0 commit comments

Comments
 (0)