Skip to content

Commit c9c9007

Browse files
committed
debug
1 parent 78d01f5 commit c9c9007

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

.github/workflows/windows.yml

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,42 @@ jobs:
2727
run: |
2828
ruby -e '
2929
exit if "${{ matrix.ruby }}" != "ucrt" && "${{ matrix.ruby }}" != "mswin"
30-
bundled_gems = Dir.glob("D:/ruby-${{ matrix.ruby }}/lib/ruby/gems/*/cache/*.gem")
31-
.map { |path| File.basename(path, ".gem")[/^(.+)-[^-]+$/, 1] }
30+
# bundled_gems = Dir.glob("D:/ruby-${{ matrix.ruby }}/lib/ruby/gems/*/cache/*.gem")
31+
# .map { |path| File.basename(path, ".gem")[/^(.+)-[^-]+$/, 1] }
32+
bundled_gems = %w[
33+
abbrev
34+
base64
35+
bigdecimal
36+
csv
37+
debug
38+
did_you_mean
39+
drb
40+
getoptlong
41+
matrix
42+
minitest
43+
mutex_m
44+
net-ftp
45+
net-imap
46+
net-pop
47+
net-smtp
48+
net-telnet
49+
nkf
50+
observer
51+
prime
52+
power_assert
53+
racc
54+
rake
55+
rbs
56+
repl_type_completor
57+
resolv-replace
58+
rexml
59+
rinda
60+
rss
61+
test-unit
62+
syslog
63+
typeprof
64+
xmlrpc
65+
]
3266
bundled_gems.each do |gem|
3367
system "gem uninstall #{gem}", exception: true
3468
end

0 commit comments

Comments
 (0)