Updates from automatic PR generation workflow plus workflow adjustments (#10839)

* Add unbuilt updated pip packages to updates-2024-12-02-00-20

* Add unbuilt updated ruby gem packages to updates-2024-12-02-00-20

* Add updated packages for linux/amd64 to updates-2024-12-02-00-20

* Add updated packages for linux/arm/v7 to updates-2024-12-02-00-20

* Add updated packages for linux/386 to updates-2024-12-02-00-20

* Adjust ruby gem version checker to skip versions containing 'java'.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add container cleanup steps to workflows

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust workflows.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Rebuild ruby_json

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2024-12-01 22:06:48 -05:00
committed by GitHub
parent 56b346d2c0
commit 77eb0a0a07
50 changed files with 458 additions and 453 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
# update_ruby_gem_packages version 1.6 (for Chromebrew)
# update_ruby_gem_packages version 1.7 (for Chromebrew)
# Author: Satadru Pramanik (satmandu) satadru at gmail dot com
# Usage in root of cloned chromebrew repo:
# tools/update_ruby_gem_packages.rb
@@ -53,6 +53,7 @@ relevant_gem_packages.each_with_index do |package, index|
puts "#{untested_package_name} versions for #{gem_test_name} are #{gem_test.split[1].split(',')}" if CREW_VERBOSE
gem_test_versions = gem_test.split[1].split(',')
gem_test_versions.delete_if { |i| i.include?('beta') }
gem_test_versions.delete_if { |i| i.include?('java') }
gem_test_versions.delete_if { |i| i.include?('pre') }
gem_test_version = gem_test_versions.max
puts "#{untested_package_name} is #{gem_test_name} version #{gem_test_version}".lightpurple if CREW_VERBOSE