40 lines
1.5 KiB
Ruby
Executable File
40 lines
1.5 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require "fileutils"
|
|
|
|
DIR = File.dirname __dir__
|
|
|
|
def execute cmd
|
|
puts cmd
|
|
abort unless system cmd
|
|
end
|
|
|
|
# In an autosynth (multi-library) run, a previous library synth may have
|
|
# created a new library. If so, autosynth doesn't clean up those newly created
|
|
# files (i.e. it runs git reset --hard but not git clean). Do that ourselves,
|
|
# so any previously created files don't pollute this and subsequent synth runs.
|
|
execute "git clean -df"
|
|
|
|
# This script is generally run as a superuser in a container. As a result,
|
|
# newly generated files will have a superuser owner, and cannot easily be
|
|
# removed by the caller. Thus, we must ensure any files generated during this
|
|
# run are given a reasonable owner before the script exits.
|
|
at_exit do
|
|
user_group = ENV["USER_GROUP"]
|
|
execute "chown -R #{user_group} #{DIR}/generated" if user_group
|
|
end
|
|
|
|
Dir.chdir "google-apis-generator"
|
|
execute "bundle install"
|
|
|
|
if ARGV.empty?
|
|
execute "echo a | bundle exec bin/generate-api gen #{DIR}/generated --from-discovery --no-preferred-only --names=#{DIR}/api_names.yaml --names-out=#{DIR}/api_names_out.yaml --spot-check"
|
|
elsif ARGV == ["--clean"] || ARGV == ["clean"]
|
|
execute "bundle exec bin/generate-api gen #{DIR}/generated --clean"
|
|
elsif ARGV.size == 2
|
|
api, version = ARGV
|
|
execute "echo a | bundle exec bin/generate-api gen #{DIR}/generated --api=#{api}.#{version} --names=#{DIR}/api_names.yaml --names-out=#{DIR}/api_names_out.yaml --spot-check"
|
|
else
|
|
abort "Bad arguments: #{ARGV}"
|
|
end
|