Skip to content

Commit 8e5951d

Browse files
authored
No need to delete Gemfile.lock in CI for Windows (#421)
1 parent 2c92b35 commit 8e5951d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727

2828
- name: Remove Gemfile.lock
29-
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head' || matrix.os == 'windows-latest')
29+
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head')
3030
run: "rm ${{ matrix.gemfile }}.lock"
3131

3232
- name: Set up Ruby

Gemfile.lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ GEM
146146
nio4r (2.7.3)
147147
nokogiri (1.16.5-arm64-darwin)
148148
racc (~> 1.4)
149+
nokogiri (1.16.5-x64-mingw-ucrt)
150+
racc (~> 1.4)
149151
nokogiri (1.16.5-x86_64-darwin)
150152
racc (~> 1.4)
151153
nokogiri (1.16.5-x86_64-linux)
@@ -253,6 +255,7 @@ GEM
253255
sorbet-static-and-runtime (>= 0.5.10187)
254256
thor (>= 0.19.2)
255257
sqlite3 (1.7.3-arm64-darwin)
258+
sqlite3 (1.7.3-x64-mingw-ucrt)
256259
sqlite3 (1.7.3-x86_64-darwin)
257260
sqlite3 (1.7.3-x86_64-linux)
258261
stringio (3.1.0)
@@ -270,6 +273,8 @@ GEM
270273
timeout (0.4.1)
271274
tzinfo (2.0.6)
272275
concurrent-ruby (~> 1.0)
276+
tzinfo-data (1.2024.1)
277+
tzinfo (>= 1.0.0)
273278
unicode-display_width (2.5.0)
274279
webmock (3.23.1)
275280
addressable (>= 2.8.0)
@@ -287,6 +292,7 @@ GEM
287292

288293
PLATFORMS
289294
arm64-darwin
295+
x64-mingw-ucrt
290296
x86_64-darwin
291297
x86_64-linux
292298

0 commit comments

Comments
 (0)