summaryrefslogtreecommitdiff
path: root/.github/workflows
AgeCommit message (Collapse)Author
21 hoursNow irb is a bundled gem and needs rubygemsNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13651
2 dayslewagon/wait-on-check-action didn't need bot tokenHiroshi SHIBATA
2 daysRun auto-style only when pull-requestNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13634
6 daysZJIT: Partially enable btest on CI (#13613)Takashi Kokubun
Notes: Merged-By: k0kubun <[email protected]>
8 daysUse artifacts built by vcpkg manifest modeHiroshi SHIBATA
I'm not sure why vcpkg cache is not using while recent weeks. Notes: Merged: https://github.com/ruby/ruby/pull/13582
10 daysUpdate a step name [ci skip]Nobuyoshi Nakada
13 daysCI: Fix duplicate timeoutsNobuyoshi Nakada
13 daysCI: Fix redirection errorsNobuyoshi Nakada
13 daysCI: Timeout launchable setup in 3minNobuyoshi Nakada
13 daysCI: Create report files only when Launchable setup succeededNobuyoshi Nakada
2025-06-05Win: Slim down `vcvars_ver` options in the matrixNobuyoshi Nakada
2025-06-01Win: Use `VsDevCmd.bat` instead of old `vcvarsall.bat`Nobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13490
2025-05-30Win: Add scripts to install and setupNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13473
2025-05-28Use the latest version of Windows SDKHiroshi SHIBATA
https://github.com/ruby/ruby/commit/72bda0f981c7136f50254c433bbfb97a953f634b Notes: Merged: https://github.com/ruby/ruby/pull/13453
2025-05-21Reenable MMTk testsPeter Zhu
Notes: Merged: https://github.com/ruby/ruby/pull/13386
2025-05-21Disabled TRAP cache of CodeQL againHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13391
2025-05-21ZJIT: Run `make zjit-test` under combo build with YJITAlan Wu
Notes: Merged: https://github.com/ruby/ruby/pull/13377
2025-05-21YJIT: ZJIT: CI: Smoke test for --[y,z]jit-dump-disasmAlan Wu
Notes: Merged: https://github.com/ruby/ruby/pull/13376
2025-05-20CI: Check if runnable first, before set up directoriesNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13379
2025-05-15CI: Fix revision.h on WindowsNobuyoshi Nakada
- Quote % inside `if` block - Use short branch name
2025-05-15CI: Refine setup on WindowsNobuyoshi Nakada
Get rid of hardcoded paths
2025-05-15Add `continue-on-error` to failed Windows 2025 build.Samuel Williams
Notes: Merged: https://github.com/ruby/ruby/pull/13345
2025-05-14Revert "Set WASMTIME_BACKTRACE_DETAILS=1 for WASM basictest"Takashi Kokubun
This reverts commit cb88edf0bfdc2ce6bfbe3b4e0463a4c2dc5d2230. It didn't help. You need to go to a different repository (ruby/ruby.wasm) to see meaningful backtraces. https://github.com/ruby/ruby.wasm/actions/runs/15000135135/job/42144675968#step:16:176
2025-05-15ZJIT: Add CI runs for building with YJITAlan Wu
Notes: Merged: https://github.com/ruby/ruby/pull/13262
2025-05-14Use gh cacheHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13330
2025-05-14Purge the oldest TRAP cache with gh actions-cache cliHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13330
2025-05-14Disabled TRAP cache of CodeQLHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13330
2025-05-13Set WASMTIME_BACKTRACE_DETAILS=1 for WASM basictestTakashi Kokubun
https://github.com/ruby/ruby/actions/runs/15008767265/job/42173424631 "error while executing at wasm backtrace" doesn't have meaningful symbols. We can't debug this from just looking at the "[BUG] Cannot malloc during GC" message. As suggested by the error message, this commit sets WASMTIME_BACKTRACE_DETAILS=1. Let me see if this improves the backtrace.
2025-05-13Bump the required BASERUBY version to 3.1 (#13321)Takashi Kokubun
Notes: Merged-By: k0kubun <[email protected]>
2025-05-13Checkout .github on omnibus result for notificationsTakashi Kokubun
It currently fails like: Can't find 'action.yml'
2025-05-12CI: Create proper revision.h on WindowsNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/13304
2025-05-11Skip mmtk/i686 tests for a whileSatoshi Tagomori
2025-05-10ruby/spec has a minimum of Ruby 3.2 nowBenoit Daloze
2025-05-07Enabled debug mode for CodeQLHiroshi SHIBATA
2025-05-01Removed unused OS_VER variableHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13220
2025-05-01windows-2019 will be EOL at end of June, 2025Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13220
2025-04-30Added GCC 15 buildHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13210
2025-04-29ZJIT: Disable ZJIT instructions when USE_ZJIT is 0 (#13199)Takashi Kokubun
* ZJIT: Disable ZJIT instructions when USE_ZJIT is 0 * Test the order of ZJIT instructions * Add more jobs that disable JITs * Show instruction names in the message Notes: Merged-By: k0kubun <[email protected]>
2025-04-26Implement Set as a core classJeremy Evans
Set has been an autoloaded standard library since Ruby 3.2. The standard library Set is less efficient than it could be, as it uses Hash for storage, which stores unnecessary values for each key. Implementation details: * Core Set uses a modified version of `st_table`, named `set_table`. than `s/st_/set_/`, the main difference is that the stored records do not have values, making them 1/3 smaller. `st_table_entry` stores `hash`, `key`, and `record` (value), while `set_table_entry` only stores `hash` and `key`. This results in large sets using ~33% less memory compared to stdlib Set. For small sets, core Set uses 12% more memory (160 byte object slot and 64 malloc bytes, while stdlib set uses 40 for Set and 160 for Hash). More memory is used because the set_table is embedded and 72 bytes in the object slot are currently wasted. Hopefully we can make this more efficient and have it stored in an 80 byte object slot in the future. * All methods are implemented as cfuncs, except the pretty_print methods, which were moved to `lib/pp.rb` (which is where the pretty_print methods for other core classes are defined). As is typical for core classes, internal calls call C functions and not Ruby methods. For example, to check if something is a Set, `rb_obj_is_kind_of` is used, instead of calling `is_a?(Set)` on the related object. * Almost all methods use the same algorithm that the pure-Ruby implementation used. The exception is when calling `Set#divide` with a block with 2-arity. The pure-Ruby method used tsort to implement this. I developed an algorithm that only allocates a single intermediate hash and does not need tsort. * The `flatten_merge` protected method is no longer necessary, so it is not implemented (it could be). * Similar to Hash/Array, subclasses of Set are no longer reflected in `inspect` output. * RDoc from stdlib Set was moved to core Set, with minor updates. This includes a comprehensive benchmark suite for all public Set methods. As you would expect, the native version is faster in the vast majority of cases, and multiple times faster in many cases. There are a few cases where it is significantly slower: * Set.new with no arguments (~1.6x) * Set#compare_by_identity for small sets (~1.3x) * Set#clone for small sets (~1.5x) * Set#dup for small sets (~1.7x) These are slower as Set does not currently use the AR table optimization that Hash does, so a new set_table is initialized for each call. I'm not sure it's worth the complexity to have an AR table-like optimization for small sets (for hashes it makes sense, as small hashes are used everywhere in Ruby). The rbs and repl_type_completor bundled gems will need updates to support core Set. The pull request marks them as allowed failures. This passes all set tests with no changes. The following specs needed modification: * Modifying frozen set error message (changed for the better) * `Set#divide` when passed a 2-arity block no longer yields the same object as both the first and second argument (this seems like an issue with the previous implementation). * Set-like objects that override `is_a?` such that `is_a?(Set)` return `true` are no longer treated as Set instances. * `Set.allocate.hash` is no longer the same as `nil.hash` * `Set#join` no longer calls `Set#to_a` (it calls the underlying C function). * `Set#flatten_merge` protected method is not implemented. Previously, `set.rb` added a `SortedSet` autoload, which loads `set/sorted_set.rb`. This replaces the `Set` autoload in `prelude.rb` with a `SortedSet` autoload, but I recommend removing it and `set/sorted_set.rb`. This moves `test/set/test_set.rb` to `test/ruby/test_set.rb`, reflecting that switch to a core class. This does not move the spec files, as I'm not sure how they should be handled. Internally, this uses the st_* types and functions as much as possible, and only adds set_* types and functions as needed. The underlying set_table implementation is stored in st.c, but there is no public C-API for it, nor is there one planned, in order to keep the ability to change the internals going forward. For internal uses of st_table with Qtrue values, those can probably be replaced with set_table. To do that, include internal/set_table.h. To handle symbol visibility (rb_ prefix), internal/set_table.h uses the same macro approach that include/ruby/st.h uses. The Set class (rb_cSet) and all methods are defined in set.c. There isn't currently a C-API for the Set class, though C-API functions can be added as needed going forward. Implements [Feature #21216] Co-authored-by: Jean Boussier <[email protected]> Co-authored-by: Oliver Nutter <[email protected]>
2025-04-25Use OS label for actions/cache. vcpkg only uses same os cacheHiroshi SHIBATA
2025-04-25Use actions/cache instead of vcpkg built-in cache featureHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13176
2025-04-25Revert "Extract windows-11-arm job from windows.yml because it may ignored ↵Hiroshi SHIBATA
vcpkg binary cache for x64-windows" This reverts commit 8e258af5b083a417a8f5e424a2c7d2c4800f8ca2. Notes: Merged: https://github.com/ruby/ruby/pull/13176
2025-04-25Extract windows-11-arm job from windows.yml because it may ignored vcpkg ↵Hiroshi SHIBATA
binary cache for x64-windows Notes: Merged: https://github.com/ruby/ruby/pull/13174
2025-04-24Move VCPKG_BINARY_SOURCES to global environmental variable on workflowHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13166
2025-04-24Added --vcpkg-root for fixing mismatched vcpkg root with scoop versionHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13165
2025-04-24codeql-trap cache is growing over 300MB. We should enable to cleanup ↵Hiroshi SHIBATA
needless cache from actions/cache Notes: Merged: https://github.com/ruby/ruby/pull/13165
2025-04-23Run auto-style.rb only on ruby/rubyNobuyoshi Nakada
`github.event.before` for newly pushed branch is all zero and cannot check out. Notes: Merged: https://github.com/ruby/ruby/pull/13158
2025-04-22Test with Windows 2025 serverHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13146
2025-04-21Try to run only working testsHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13118
2025-04-21nmake check is crashed with windows-11-arm, we need to try test-specHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/13118