mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Ruby => 4.0.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-ruby_4.0.1: Package File Update Run on linux/386 container. * updater-ruby_4.0.1: Package File Update Run on linux/amd64 container. * updater-ruby_4.0.1: Package File Update Run on linux/arm/v7 container. * Adjust package tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust GCC 15 build warnings. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
7 lines
311 B
Bash
Executable File
7 lines
311 B
Bash
Executable File
#!/bin/bash -ex
|
|
for b in $(crew files ruby | grep /usr/local/bin); do $b --version 2>&1; done
|
|
# See https://bugs.ruby-lang.org/issues/21607
|
|
ruby -e "require 'concurrent-ruby' ; puts 'success'" || echo "Please rebuild ruby with GCC 14."
|
|
# See https://bugs.ruby-lang.org/issues/20085
|
|
ruby -e "Fiber.new{}.resume"
|