-
Notifications
You must be signed in to change notification settings - Fork 123
Fix CI #379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think ruby:2.5 uses debian:buster, but buster is already EOL... https://github.com/itamae-kitchen/itamae/actions/runs/16979568870/job/48136506795 ``` Your RubyGems version (2.6.14.4) has a bug that prevents `required_ruby_version` from working for Bundler. Any scripts that use `gem install bundler` will break as soon as Bundler drops support for your Ruby version. Please upgrade RubyGems to avoid future breakage and silence this warning by running `gem update --system 3.2.3` docker run --privileged -d --name itamae -v /home/runner/work/itamae/itamae:/itamae ruby:2.4 sleep 1d Unable to find image 'ruby:2.4' locally 2.4: Pulling from library/ruby f15005b0235f: Pulling fs layer docker exec --env LANG=en_US.utf8 itamae apt-get update -y Ign:1 http://security.debian.org/debian-security buster/updates InRelease Err:2 http://security.debian.org/debian-security buster/updates Release 404 Not Found [IP: 151.101.202.132 80] Ign:3 http://deb.debian.org/debian buster InRelease Ign:4 http://deb.debian.org/debian buster-updates InRelease Err:5 http://deb.debian.org/debian buster Release 404 Not Found [IP: 151.101.202.132 80] Err:6 http://deb.debian.org/debian buster-updates Release 404 Not Found [IP: 151.101.202.132 80] Reading package lists... E: The repository 'http://security.debian.org/debian-security buster/updates Release' does not have a Release file. E: The repository 'http://deb.debian.org/debian buster Release' does not have a Release file. E: The repository 'http://deb.debian.org/debian buster-updates Release' does not have a Release file. rake aborted! ```
e91e223 to
e25b217
Compare
dstat package have beeb renamed to pcp since Debian trixie https://packages.debian.org/trixie/ia64/dstat ``` $ docker run --rm -it debian:trixie bash root@710b81c352a7:/# apt-get update root@710b81c352a7:/# apt-get install -y dstat Reading package lists... Done Building dependency tree... Done Reading state information... Done Note, selecting 'pcp' instead of 'dstat' (snip) done. root@710b81c352a7:/# dpkg -l dstat Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-==============-============-============-================================= un dstat <none> <none> (no description available) root@710b81c352a7:/# dpkg -l pcp Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-==============-============-============-============================================================== ii pcp 6.3.8-1 arm64 System level performance monitoring and performance management ``` Therefore, I changed package so that it can be installed on both new and old versions of Debian for compatibility.
f3ad82a to
f401c9f
Compare
This repository uses matrix to run 50+ builds in a pipeline. This results in simultaneous requests being sent to httpbin.org, similar to a DDoS attack, often causing 500 errors and test failures. e.g. https://github.com/itamae-kitchen/itamae/actions/runs/17045210601/job/48319099479?pr=379 Therefore, I suppressed simultaneous requests to httpbin.org.
54ba038 to
77ab178
Compare
This reverts commit 57bf2c7.
unasuke
approved these changes
Aug 24, 2025
Member
unasuke
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry for the late response. LGTM!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, this repo's latest master is failing to build due to multiple issues...
https://github.com/itamae-kitchen/itamae/actions/runs/16979568870
This includes #377. This issue is currently being fixed by @unasuke in #378.
So, in this PR, I have only modified the test code and CI settings to pass the build.
For details, please see the following commit.
@unasuke I am temporarily not using Ruby 3.4.3+ for #377. If you resume #378, please revert 3a5a55b 🙏