Skip to content

Commit 0c6b02c

Browse files
Use a single Gemfile
1 parent 9e00a15 commit 0c6b02c

File tree

5 files changed

+6
-132
lines changed

5 files changed

+6
-132
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ jobs:
2626
node-version-file: "./.tool-versions"
2727
- uses: ruby/setup-ruby@v1
2828
with:
29-
bundler-cache: false
29+
bundler-cache: true
3030
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
31-
- run: bundle install
3231
- run: npm ci
3332
- run: npm ci
3433
working-directory: ./website
@@ -92,8 +91,7 @@ jobs:
9291
node-version-file: "./.tool-versions"
9392
- uses: ruby/setup-ruby@v1
9493
with:
95-
bundler-cache: false
96-
- run: bundle install
94+
bundler-cache: true
9795
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
9896
- run: make sdk-build
9997
- run: make capacitor-npm-ci
@@ -126,11 +124,10 @@ jobs:
126124
node-version-file: "./.tool-versions"
127125
- uses: ruby/setup-ruby@v1
128126
with:
129-
bundler-cache: false
127+
bundler-cache: true
130128
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
131129
- run: make sdk-build
132130
- run: make react-native-npm-ci
133-
- run: make react-native-bundle-install
134131
- run: make react-native-pod-install
135132
- name: Install the Apple certificate and provisioning profile
136133
env:
@@ -191,7 +188,7 @@ jobs:
191188
node-version-file: "./.tool-versions"
192189
- uses: ruby/setup-ruby@v1
193190
with:
194-
bundler-cache: false
191+
bundler-cache: true
195192
- run: make sdk-build
196193
- run: make react-native-npm-ci
197194
- run: make react-native-set-versionCode
@@ -228,7 +225,7 @@ jobs:
228225
node-version-file: "./.tool-versions"
229226
- uses: ruby/setup-ruby@v1
230227
with:
231-
bundler-cache: false
228+
bundler-cache: true
232229
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
233230
- run: make sdk-build
234231
- run: make capacitor-npm-ci
@@ -290,7 +287,7 @@ jobs:
290287
node-version-file: "./.tool-versions"
291288
- uses: ruby/setup-ruby@v1
292289
with:
293-
bundler-cache: false
290+
bundler-cache: true
294291
- run: npm install -g appcenter-cli
295292
- run: make sdk-build
296293
- run: make capacitor-npm-ci

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
## NOTE(louis): This Gemfile is intended for the whole project, except ./example/reactnative
2-
31
source "https://rubygems.org"
42

53
# Ruby 3.3 is the default.

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,6 @@ react-native-apksigner:
117117
--out ./example/reactnative/android/app/build/outputs/apk/release/app-release-signed.apk \
118118
./example/reactnative/android/app/build/outputs/apk/release/app-release-unsigned.apk
119119

120-
.PHONY: react-native-bundle-install
121-
react-native-bundle-install:
122-
cd ./example/reactnative; bundle install
123-
124120
.PHONY: react-native-pod-install
125121
react-native-pod-install:
126122
cd ./example/reactnative/ios; bundle exec pod install

example/reactnative/Gemfile

Lines changed: 0 additions & 13 deletions
This file was deleted.

example/reactnative/Gemfile.lock

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)