Skip to content

Commit 3bb36a6

Browse files
fix: exclude unreleased gRPC instrumentation from installation tests (#1350)
1 parent b98ebe8 commit 3bb36a6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

releases/Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ Dir['../propagator/**/version.rb'].each do |f|
4747
gem "opentelemetry-propagator-#{name}", version
4848
end
4949

50+
excluded_instrumentations = %w[grpc]
5051
Dir['../instrumentation/**/version.rb'].each do |f|
5152
name = f.match(%r{instrumentation/(\w+)/lib})[1]
53+
next if excluded_instrumentations.include?(name)
5254

5355
version = File.read(f).match(/VERSION = '([\d\.]+)'/)[1]
5456
gem "opentelemetry-instrumentation-#{name}", version

0 commit comments

Comments
 (0)