Skip to content

Commit e22d3db

Browse files
committed
Make installs frozen
1 parent 1404c7b commit e22d3db

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
@@ -229,7 +229,7 @@ jobs:
229229

230230
- name: Install Node modules with Yarn for Core dummy app
231231
if: env.RUN_CORE
232-
run: cd spec/dummy && yarn install --no-progress --no-emoji
232+
run: cd spec/dummy && yarn install --frozen-lockfile --no-progress --no-emoji
233233

234234
- name: Save Core dummy app ruby gems to cache
235235
if: env.RUN_CORE
@@ -242,9 +242,9 @@ jobs:
242242
if: env.RUN_CORE
243243
run: |
244244
cd spec/dummy
245-
bundle lock --add-platform 'x86_64-linux'
246245
bundle config set path vendor/bundle
247-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
246+
bundle config set frozen true
247+
bundle _2.5.4_ install --jobs=4 --retry=3
248248
249249
- name: Prepare Core production assets
250250
if: env.RUN_CORE
@@ -382,9 +382,9 @@ jobs:
382382
if: env.RUN_PRO
383383
run: |
384384
cd react_on_rails_pro/spec/dummy
385-
bundle lock --add-platform 'x86_64-linux'
386385
bundle config set path vendor/bundle
387-
bundle _2.5.4_ check || bundle _2.5.4_ install --jobs=4 --retry=3
386+
bundle config set frozen true
387+
bundle _2.5.4_ install --jobs=4 --retry=3
388388
389389
- name: Generate file-system based entrypoints for Pro
390390
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)