Skip to content

Commit 9739d33

Browse files
committed
Run Windows CI on 3.2.8 and not 3.2.9 since the latter has a regression
* 3.2.9 fails: https://github.com/ruby/spec/actions/runs/18350390313/job/52269280298 * 3.2.8 succeeds: https://github.com/ruby/spec/actions/runs/18350299132/job/52268132234
1 parent 3d7e563 commit 9739d33

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ jobs:
1111
os: [ ubuntu, macos, windows ]
1212
ruby: [ 3.2.9, 3.3.9, 3.4.7 ]
1313
rubyopt: [""]
14+
exclude:
15+
- { os: windows, ruby: 3.2.9 } # 3.2.9 has some issue with file time microseconds
1416
include:
15-
- os: ubuntu
16-
ruby: 3.4.7
17-
rubyopt: "--enable-frozen-string-literal"
18-
- os: ubuntu
19-
ruby: 3.4.7
20-
rubyopt: "--parser=parse.y"
17+
- { os: windows, ruby: 3.2.8 } # 3.2.9 has some issue with file time microseconds
18+
- { os: ubuntu, ruby: 3.4.7, rubyopt: "--enable-frozen-string-literal" }
19+
- { os: ubuntu, ruby: 3.4.7, rubyopt: "--parser=parse.y" }
2120

2221
runs-on: ${{ matrix.os }}-latest
2322
steps:

0 commit comments

Comments
 (0)