rake_compiler_docker_image.rb 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/usr/bin/env ruby
  2. # Copyright 2016 gRPC authors.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. def grpc_root()
  16. File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
  17. end
  18. def docker_image_for_rake_compiler(platform)
  19. require 'digest'
  20. dockerfile = File.join(grpc_root, 'third_party', 'rake-compiler-dock', 'rake_' + platform, 'Dockerfile')
  21. dockerpath = File.dirname(dockerfile)
  22. version = Digest::SHA1.file(dockerfile).hexdigest
  23. image_name = 'rake_' + platform + ':' + version
  24. ENV.fetch('DOCKERHUB_ORGANIZATION', 'grpctesting') + '/' + image_name
  25. end
  26. def run_rake_compiler(platform, args)
  27. require 'rake_compiler_dock'
  28. ENV['RCD_RUBYVM'] = 'mri'
  29. ENV['RCD_PLATFORM'] = platform
  30. ENV['RCD_IMAGE'] = docker_image_for_rake_compiler(platform)
  31. RakeCompilerDock.sh args
  32. end