getsentry/raven-ruby

View on GitHub
.scripts/batch_build.rb

Summary

Maintainability
A
0 mins
Test Coverage
INTEGRATIONS = %w(sentry-rails sentry-sidekiq sentry-delayed_job sentry-resque sentry-opentelemetry)
GEMS = %w(sentry-ruby) + INTEGRATIONS

success = GEMS.map do |gem_name|
  puts(`cd #{gem_name}; make build`)
  $?.success?
end.all?

exit success ? 0 : 1