Skip to content

Commit 7ad68e9

Browse files
authored
ci: fix ruby, disable integration tests (#2337)
1 parent a3f5c10 commit 7ad68e9

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.ado/apple-pr.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ stages:
2828
- template: /.ado/jobs/test-javascript.yml@self
2929
- template: /.ado/jobs/npm-publish-dry-run.yml@self
3030

31-
- stage: Integration
32-
dependsOn: []
33-
jobs:
34-
- template: /.ado/jobs/test-react-native-macos-init.yml@self
35-
- template: /.ado/jobs/react-native-test-app-integration.yml@self
31+
# https://github.com/microsoft/react-native-macos/issues/2344
32+
# The Verdaccio server consistently hangs on creation, which is required for the integration tests
33+
# - stage: Integration
34+
# dependsOn: []
35+
# jobs:
36+
# - template: /.ado/jobs/test-react-native-macos-init.yml@self
37+
# - template: /.ado/jobs/react-native-test-app-integration.yml@self

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ ruby ">= 2.6.10"
55

66
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
77
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
8+
gem 'xcodeproj', '< 1.26.0'
9+
gem 'concurrent-ruby', '< 1.3.4'

packages/helloworld/Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ ruby ">= 2.6.10"
44

55
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
66
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
7+
gem 'xcodeproj', '< 1.26.0'
8+
gem 'concurrent-ruby', '< 1.3.4'

packages/rn-tester/Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ ruby ">= 2.6.10"
88
gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1'
99
gem 'rexml'
1010
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
11+
gem 'xcodeproj', '< 1.26.0'
12+
gem 'concurrent-ruby', '< 1.3.4'

0 commit comments

Comments
 (0)