Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 1725d14

Browse files
committed
Add step for Windows SO
1 parent 32b70be commit 1725d14

File tree

2 files changed

+73
-70
lines changed

2 files changed

+73
-70
lines changed

.github/workflows/ruby.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ${{ matrix.platform }}
12+
runs-on: ${{ matrix.os }}
1313

1414
strategy:
1515
matrix:
16-
platform: [ubuntu-latest, macos-latest, windows-latest]
16+
os: [ubuntu-latest, macos-latest, windows-latest]
1717
ruby: [ '2.6.x' ]
1818

1919
steps:
@@ -44,6 +44,9 @@ jobs:
4444
- name: Install SQLite gem (Windows)
4545
if: runner.os == 'Windows'
4646
run: gem install sqlite3 --platform=ruby -- --with-sqlite3-include=/c:/ProgramData/ProgramData/lib/SQLite/tools
47+
- name: Install libv8 gem (Windows)
48+
if: runner.os == 'Windows'
49+
run: gem install libv8 -v '3.16.14.11' -- --with-system-v8
4750
- name: Install gems
4851
run: |
4952
gem install bundler

Gemfile.lock

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actioncable (6.0.2.2)
5-
actionpack (= 6.0.2.2)
4+
actioncable (6.0.3.2)
5+
actionpack (= 6.0.3.2)
66
nio4r (~> 2.0)
77
websocket-driver (>= 0.6.1)
8-
actionmailbox (6.0.2.2)
9-
actionpack (= 6.0.2.2)
10-
activejob (= 6.0.2.2)
11-
activerecord (= 6.0.2.2)
12-
activestorage (= 6.0.2.2)
13-
activesupport (= 6.0.2.2)
8+
actionmailbox (6.0.3.2)
9+
actionpack (= 6.0.3.2)
10+
activejob (= 6.0.3.2)
11+
activerecord (= 6.0.3.2)
12+
activestorage (= 6.0.3.2)
13+
activesupport (= 6.0.3.2)
1414
mail (>= 2.7.1)
15-
actionmailer (6.0.2.2)
16-
actionpack (= 6.0.2.2)
17-
actionview (= 6.0.2.2)
18-
activejob (= 6.0.2.2)
15+
actionmailer (6.0.3.2)
16+
actionpack (= 6.0.3.2)
17+
actionview (= 6.0.3.2)
18+
activejob (= 6.0.3.2)
1919
mail (~> 2.5, >= 2.5.4)
2020
rails-dom-testing (~> 2.0)
21-
actionpack (6.0.2.2)
22-
actionview (= 6.0.2.2)
23-
activesupport (= 6.0.2.2)
21+
actionpack (6.0.3.2)
22+
actionview (= 6.0.3.2)
23+
activesupport (= 6.0.3.2)
2424
rack (~> 2.0, >= 2.0.8)
2525
rack-test (>= 0.6.3)
2626
rails-dom-testing (~> 2.0)
2727
rails-html-sanitizer (~> 1.0, >= 1.2.0)
28-
actiontext (6.0.2.2)
29-
actionpack (= 6.0.2.2)
30-
activerecord (= 6.0.2.2)
31-
activestorage (= 6.0.2.2)
32-
activesupport (= 6.0.2.2)
28+
actiontext (6.0.3.2)
29+
actionpack (= 6.0.3.2)
30+
activerecord (= 6.0.3.2)
31+
activestorage (= 6.0.3.2)
32+
activesupport (= 6.0.3.2)
3333
nokogiri (>= 1.8.5)
34-
actionview (6.0.2.2)
35-
activesupport (= 6.0.2.2)
34+
actionview (6.0.3.2)
35+
activesupport (= 6.0.3.2)
3636
builder (~> 3.1)
3737
erubi (~> 1.4)
3838
rails-dom-testing (~> 2.0)
3939
rails-html-sanitizer (~> 1.1, >= 1.2.0)
40-
activejob (6.0.2.2)
41-
activesupport (= 6.0.2.2)
40+
activejob (6.0.3.2)
41+
activesupport (= 6.0.3.2)
4242
globalid (>= 0.3.6)
43-
activemodel (6.0.2.2)
44-
activesupport (= 6.0.2.2)
45-
activerecord (6.0.2.2)
46-
activemodel (= 6.0.2.2)
47-
activesupport (= 6.0.2.2)
48-
activestorage (6.0.2.2)
49-
actionpack (= 6.0.2.2)
50-
activejob (= 6.0.2.2)
51-
activerecord (= 6.0.2.2)
43+
activemodel (6.0.3.2)
44+
activesupport (= 6.0.3.2)
45+
activerecord (6.0.3.2)
46+
activemodel (= 6.0.3.2)
47+
activesupport (= 6.0.3.2)
48+
activestorage (6.0.3.2)
49+
actionpack (= 6.0.3.2)
50+
activejob (= 6.0.3.2)
51+
activerecord (= 6.0.3.2)
5252
marcel (~> 0.3.1)
53-
activesupport (6.0.2.2)
53+
activesupport (6.0.3.2)
5454
concurrent-ruby (~> 1.0, >= 1.0.2)
5555
i18n (>= 0.7, < 2)
5656
minitest (~> 5.1)
5757
tzinfo (~> 1.1)
58-
zeitwerk (~> 2.2)
58+
zeitwerk (~> 2.2, >= 2.2.2)
5959
bcrypt (3.1.13)
6060
bindex (0.8.1)
6161
bootsnap (1.4.6)
6262
msgpack (~> 1.0)
6363
builder (3.2.4)
64-
byebug (11.1.1)
64+
byebug (11.1.3)
6565
coffee-rails (5.0.0)
6666
coffee-script (>= 2.2.0)
6767
railties (>= 5.2.0)
@@ -79,10 +79,10 @@ GEM
7979
execjs (2.7.0)
8080
faraday (0.17.3)
8181
multipart-post (>= 1.2, < 3)
82-
ffi (1.12.2)
82+
ffi (1.13.1)
8383
globalid (0.4.2)
8484
activesupport (>= 4.2.0)
85-
i18n (1.8.2)
85+
i18n (1.8.3)
8686
concurrent-ruby (~> 1.0)
8787
jbuilder (2.10.0)
8888
activesupport (>= 5.0.0)
@@ -91,64 +91,64 @@ GEM
9191
listen (3.2.1)
9292
rb-fsevent (~> 0.10, >= 0.10.3)
9393
rb-inotify (~> 0.9, >= 0.9.10)
94-
loofah (2.5.0)
94+
loofah (2.6.0)
9595
crass (~> 1.0.2)
9696
nokogiri (>= 1.5.9)
9797
mail (2.7.1)
9898
mini_mime (>= 0.1.1)
9999
marcel (0.3.3)
100100
mimemagic (~> 0.3.2)
101101
method_source (1.0.0)
102-
mimemagic (0.3.4)
102+
mimemagic (0.3.5)
103103
mini_mime (1.0.2)
104104
mini_portile2 (2.4.0)
105-
mini_racer (0.2.9)
106-
libv8 (>= 6.9.411)
107-
minitest (5.14.0)
105+
mini_racer (0.2.14)
106+
libv8 (> 7.3)
107+
minitest (5.14.1)
108108
minitest-stub_any_instance (1.0.2)
109109
msgpack (1.3.3)
110110
multipart-post (2.1.1)
111111
nio4r (2.5.2)
112112
nokogiri (1.10.9)
113113
mini_portile2 (~> 2.4.0)
114-
puma (4.3.3)
114+
puma (4.3.5)
115115
nio4r (~> 2.0)
116-
rack (2.2.2)
116+
rack (2.2.3)
117117
rack-test (1.1.0)
118118
rack (>= 1.0, < 3)
119-
rails (6.0.2.2)
120-
actioncable (= 6.0.2.2)
121-
actionmailbox (= 6.0.2.2)
122-
actionmailer (= 6.0.2.2)
123-
actionpack (= 6.0.2.2)
124-
actiontext (= 6.0.2.2)
125-
actionview (= 6.0.2.2)
126-
activejob (= 6.0.2.2)
127-
activemodel (= 6.0.2.2)
128-
activerecord (= 6.0.2.2)
129-
activestorage (= 6.0.2.2)
130-
activesupport (= 6.0.2.2)
119+
rails (6.0.3.2)
120+
actioncable (= 6.0.3.2)
121+
actionmailbox (= 6.0.3.2)
122+
actionmailer (= 6.0.3.2)
123+
actionpack (= 6.0.3.2)
124+
actiontext (= 6.0.3.2)
125+
actionview (= 6.0.3.2)
126+
activejob (= 6.0.3.2)
127+
activemodel (= 6.0.3.2)
128+
activerecord (= 6.0.3.2)
129+
activestorage (= 6.0.3.2)
130+
activesupport (= 6.0.3.2)
131131
bundler (>= 1.3.0)
132-
railties (= 6.0.2.2)
132+
railties (= 6.0.3.2)
133133
sprockets-rails (>= 2.0.0)
134134
rails-dom-testing (2.0.3)
135135
activesupport (>= 4.2.0)
136136
nokogiri (>= 1.6)
137137
rails-html-sanitizer (1.3.0)
138138
loofah (~> 2.3)
139-
railties (6.0.2.2)
140-
actionpack (= 6.0.2.2)
141-
activesupport (= 6.0.2.2)
139+
railties (6.0.3.2)
140+
actionpack (= 6.0.3.2)
141+
activesupport (= 6.0.3.2)
142142
method_source
143143
rake (>= 0.8.7)
144144
thor (>= 0.20.3, < 2.0)
145145
rake (13.0.1)
146-
rb-fsevent (0.10.3)
146+
rb-fsevent (0.10.4)
147147
rb-inotify (0.10.1)
148148
ffi (~> 1.0)
149149
sass-rails (6.0.0)
150150
sassc-rails (~> 2.1, >= 2.1.1)
151-
sassc (2.2.1)
151+
sassc (2.4.0)
152152
ffi (~> 1.9)
153153
sassc-rails (2.1.2)
154154
railties (>= 4.0.0)
@@ -160,7 +160,7 @@ GEM
160160
spring-watcher-listen (2.0.1)
161161
listen (>= 2.7, < 4.0)
162162
spring (>= 1.2, < 3.0)
163-
sprockets (4.0.0)
163+
sprockets (4.0.2)
164164
concurrent-ruby (~> 1.0)
165165
rack (> 1, < 3)
166166
sprockets-rails (3.2.1)
@@ -182,14 +182,14 @@ GEM
182182
thread_safe (~> 0.1)
183183
uglifier (4.2.0)
184184
execjs (>= 0.3.0, < 3)
185-
web-console (4.0.1)
185+
web-console (4.0.3)
186186
actionview (>= 6.0.0)
187187
activemodel (>= 6.0.0)
188188
bindex (>= 0.4.0)
189189
railties (>= 6.0.0)
190-
websocket-driver (0.7.1)
190+
websocket-driver (0.7.2)
191191
websocket-extensions (>= 0.1.0)
192-
websocket-extensions (0.1.4)
192+
websocket-extensions (0.1.5)
193193
zeitwerk (2.3.0)
194194

195195
PLATFORMS
@@ -218,4 +218,4 @@ DEPENDENCIES
218218
web-console (>= 4.0.1)
219219

220220
BUNDLED WITH
221-
1.17.3
221+
2.1.4

0 commit comments

Comments
 (0)