Skip to content

Commit 2a30d27

Browse files
committed
Make installs frozen
1 parent 4c9b5ac commit 2a30d27

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ jobs:
224224

225225
- name: Install Node modules with Yarn for Core dummy app
226226
if: env.RUN_CORE
227-
run: cd spec/dummy && yarn install --no-progress --no-emoji
227+
run: cd spec/dummy && yarn install --frozen-lockfile --no-progress --no-emoji
228228

229229
- name: Save Core dummy app ruby gems to cache
230230
if: env.RUN_CORE
@@ -237,9 +237,9 @@ jobs:
237237
if: env.RUN_CORE
238238
run: |
239239
cd spec/dummy
240-
bundle lock --add-platform 'x86_64-linux'
241240
bundle config set path vendor/bundle
242-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
241+
bundle config set frozen true
242+
bundle _2.5.4_ install --jobs=4 --retry=3
243243
244244
- name: Prepare Core production assets
245245
if: env.RUN_CORE
@@ -377,9 +377,9 @@ jobs:
377377
if: env.RUN_PRO
378378
run: |
379379
cd react_on_rails_pro/spec/dummy
380-
bundle lock --add-platform 'x86_64-linux'
381380
bundle config set path vendor/bundle
382-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
381+
bundle config set frozen true
382+
bundle _2.5.4_ install --jobs=4 --retry=3
383383
384384
- name: Generate file-system based entrypoints for Pro
385385
if: env.RUN_PRO

spec/dummy/Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ GEM
195195
nokogiri (1.18.10)
196196
mini_portile2 (~> 2.8.2)
197197
racc (~> 1.4)
198+
nokogiri (1.18.10-x86_64-linux-gnu)
199+
racc (~> 1.4)
198200
ostruct (0.6.3)
199201
package_json (0.1.0)
200202
parallel (1.24.0)
@@ -408,6 +410,7 @@ GEM
408410

409411
PLATFORMS
410412
ruby
413+
x86_64-linux
411414

412415
DEPENDENCIES
413416
amazing_print

0 commit comments

Comments
 (0)