Skip to content

Commit b90be12

Browse files
committed
Rename 3.4-asan to asan-release
* And it is currently based on the latest release, that is 4.0.0.
1 parent 4c24fa5 commit b90be12

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- { os: windows-2025, ruby: mswin }
3333
- { os: windows-2025, ruby: ucrt }
3434
- { os: ubuntu-24.04, ruby: asan }
35-
- { os: ubuntu-24.04, ruby: 3.4-asan }
35+
- { os: ubuntu-24.04, ruby: asan-release }
3636
exclude:
3737
# https://github.com/ruby/setup-ruby/issues/496
3838
- { os: ubuntu-22.04, ruby: '2.2' }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This action currently supports these versions of MRI, JRuby and TruffleRuby:
2626
Native extensions are automatically compiled with AddressSanitizer when using `ruby-asan`.
2727
`ruby-asan` is currently only available on `ubuntu-24.04`.
2828

29-
`ruby-3.4-asan` is similar to `ruby-asan` but built from the latest stable 3.4 release tag.
29+
`asan-release` is similar to `ruby-asan` but built from the latest stable release tag.
3030
Like `ruby-asan`, it's currently only available on `ubuntu-24.04`.
3131

3232
Regarding Windows ruby master builds, `mingw` is a MSYS2/MinGW build, `head` & `ucrt` are MSYS2/UCRT64

common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ export async function time(name, block) {
6868
}
6969

7070
export function isHeadVersion(rubyVersion) {
71-
// 3.4-asan counts as "head" because the version cannot be selected -- you can only get whatever's latest
72-
return ['head', 'debug', 'mingw', 'mswin', 'ucrt', 'asan', '3.4-asan'].includes(rubyVersion)
71+
// asan-release counts as "head" because the version cannot be selected -- you can only get whatever's latest
72+
return ['head', 'debug', 'mingw', 'mswin', 'ucrt', 'asan', 'asan-release'].includes(rubyVersion)
7373
}
7474

7575
export function isStableVersion(engine, rubyVersion) {

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ruby-builder-versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"3.4.0-preview1", "3.4.0-preview2", "3.4.0-rc1", "3.4.0", "3.4.1", "3.4.2", "3.4.3", "3.4.4", "3.4.5", "3.4.6", "3.4.7", "3.4.8",
1717
"3.5.0-preview1",
1818
"4.0.0-preview2", "4.0.0-preview3", "4.0.0",
19-
"head", "debug", "asan", "3.4-asan"
19+
"head", "debug", "asan", "asan-release"
2020
],
2121
"jruby": [
2222
"9.1.17.0",

0 commit comments

Comments
 (0)