Skip to content

Commit e328c0d

Browse files
committed
Make installs frozen
1 parent f14e52a commit e328c0d

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
@@ -240,7 +240,7 @@ jobs:
240240

241241
- name: Install Node modules with Yarn for Core dummy app
242242
if: env.RUN_CORE
243-
run: cd spec/dummy && yarn install --no-progress --no-emoji
243+
run: cd spec/dummy && yarn install --frozen-lockfile --no-progress --no-emoji
244244

245245
- name: Save Core dummy app ruby gems to cache
246246
if: env.RUN_CORE
@@ -253,9 +253,9 @@ jobs:
253253
if: env.RUN_CORE
254254
run: |
255255
cd spec/dummy
256-
bundle lock --add-platform 'x86_64-linux'
257256
bundle config set path vendor/bundle
258-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
257+
bundle config set frozen true
258+
bundle _2.5.4_ install --jobs=4 --retry=3
259259
260260
- name: Prepare Core production assets
261261
if: env.RUN_CORE
@@ -393,9 +393,9 @@ jobs:
393393
if: env.RUN_PRO
394394
run: |
395395
cd react_on_rails_pro/spec/dummy
396-
bundle lock --add-platform 'x86_64-linux'
397396
bundle config set path vendor/bundle
398-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
397+
bundle config set frozen true
398+
bundle _2.5.4_ install --jobs=4 --retry=3
399399
400400
- name: Generate file-system based entrypoints for Pro
401401
if: env.RUN_PRO

react_on_rails/spec/dummy/Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ GEM
197197
nokogiri (1.18.10)
198198
mini_portile2 (~> 2.8.2)
199199
racc (~> 1.4)
200+
nokogiri (1.18.10-x86_64-linux-gnu)
201+
racc (~> 1.4)
200202
ostruct (0.6.3)
201203
package_json (0.1.0)
202204
parallel (1.24.0)
@@ -423,6 +425,7 @@ GEM
423425

424426
PLATFORMS
425427
ruby
428+
x86_64-linux
426429

427430
DEPENDENCIES
428431
amazing_print

0 commit comments

Comments
 (0)