mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Add the ENTERPRISE_REPOSITORY env var to let user consume artifacts from their personal maven mirror (#52514)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52514 As per title, this change add the `ENTERPRISE_REPOSITORY` env variable so that users can use their owm maven mirror to consume artifacts rather than the official url. This is helpful as: - we can reduce the traffic toward maven central - companies can speed up their builds by relying on local/closer replicas ## Changelog: [iOS][Added] - Add the `ENTERPRISE_REPOSITORY` env variable to cocopaods infra Reviewed By: cortinico Differential Revision: D78011424 fbshipit-source-id: 24b83b4866095d7fe3318362afc5075b99b146e7
This commit is contained in:
committed by
Moti Zilberman
parent
3a99e31e56
commit
31fdd536ca
@@ -119,7 +119,12 @@ class ReactNativeCoreUtils
|
||||
end
|
||||
|
||||
def self.stable_tarball_url(version, build_type)
|
||||
maven_repo_url = "https://repo1.maven.org/maven2"
|
||||
## You can use the `ENTERPRISE_REPOSITORY` ariable to customise the base url from which artifacts will be downloaded.
|
||||
## The mirror's structure must be the same of the Maven repo the react-native core team publishes on Maven Central.
|
||||
maven_repo_url =
|
||||
ENV[ENTERPRISE_REPOSITORY] != nil && ENV[ENTERPRISE_REPOSITORY] != "" ?
|
||||
ENV[ENTERPRISE_REPOSITORY] :
|
||||
"https://repo1.maven.org/maven2"
|
||||
group = "com/facebook/react"
|
||||
# Sample url from Maven:
|
||||
# https://repo1.maven.org/maven2/com/facebook/react/react-native-artifacts/0.81.0/react-native-artifacts-0.81.0-reactnative-core-debug.tar.gz
|
||||
|
||||
@@ -166,7 +166,12 @@ class ReactNativeDependenciesUtils
|
||||
end
|
||||
|
||||
def self.release_tarball_url(version, build_type)
|
||||
maven_repo_url = "https://repo1.maven.org/maven2"
|
||||
## You can use the `ENTERPRISE_REPOSITORY` ariable to customise the base url from which artifacts will be downloaded.
|
||||
## The mirror's structure must be the same of the Maven repo the react-native core team publishes on Maven Central.
|
||||
maven_repo_url =
|
||||
ENV[ENTERPRISE_REPOSITORY] != nil && ENV[ENTERPRISE_REPOSITORY] != "" ?
|
||||
ENV[ENTERPRISE_REPOSITORY] :
|
||||
"https://repo1.maven.org/maven2"
|
||||
group = "com/facebook/react"
|
||||
# Sample url from Maven:
|
||||
# https://repo1.maven.org/maven2/com/facebook/react/react-native-artifacts/0.79.0-rc.0/react-native-artifacts-0.79.0-rc.0-reactnative-dependencies-debug.tar.gz
|
||||
|
||||
+4
-1
@@ -183,7 +183,10 @@ function getTarballUrl(
|
||||
version /*: string */,
|
||||
buildType /*: BuildFlavor */,
|
||||
) /*: string */ {
|
||||
const mavenRepoUrl = 'https://repo1.maven.org/maven2';
|
||||
// You can use the `ENTERPRISE_REPOSITORY` ariable to customise the base url from which artifacts will be downloaded.
|
||||
// The mirror's structure must be the same of the Maven repo the react-native core team publishes on Maven Central.
|
||||
const mavenRepoUrl =
|
||||
process.env.ENTERPRISE_REPOSITORY ?? 'https://repo1.maven.org/maven2';
|
||||
const namespace = 'com/facebook/react';
|
||||
return `${mavenRepoUrl}/${namespace}/react-native-artifacts/${version}/react-native-artifacts-${version}-hermes-ios-${buildType.toLowerCase()}.tar.gz`;
|
||||
}
|
||||
|
||||
@@ -179,7 +179,10 @@ function getTarballUrl(
|
||||
version /*: string */,
|
||||
buildType /*: BuildFlavor */,
|
||||
) /*: string */ {
|
||||
const mavenRepoUrl = 'https://repo1.maven.org/maven2';
|
||||
// You can use the `ENTERPRISE_REPOSITORY` ariable to customise the base url from which artifacts will be downloaded.
|
||||
// The mirror's structure must be the same of the Maven repo the react-native core team publishes on Maven Central.
|
||||
const mavenRepoUrl =
|
||||
process.env.ENTERPRISE_REPOSITORY ?? 'https://repo1.maven.org/maven2';
|
||||
const namespace = 'com/facebook/react';
|
||||
return `${mavenRepoUrl}/${namespace}/react-native-artifacts/${version}/react-native-artifacts-${version}-reactnative-dependencies-${buildType.toLowerCase()}.tar.gz`;
|
||||
}
|
||||
|
||||
@@ -204,7 +204,12 @@ def hermestag_file(react_native_path)
|
||||
end
|
||||
|
||||
def release_tarball_url(version, build_type)
|
||||
maven_repo_url = "https://repo1.maven.org/maven2"
|
||||
## You can use the `ENTERPRISE_REPOSITORY` ariable to customise the base url from which artifacts will be downloaded.
|
||||
## The mirror's structure must be the same of the Maven repo the react-native core team publishes on Maven Central.
|
||||
maven_repo_url =
|
||||
ENV[ENTERPRISE_REPOSITORY] != nil && ENV[ENTERPRISE_REPOSITORY] != "" ?
|
||||
ENV[ENTERPRISE_REPOSITORY] :
|
||||
"https://repo1.maven.org/maven2"
|
||||
namespace = "com/facebook/react"
|
||||
# Sample url from Maven:
|
||||
# https://repo1.maven.org/maven2/com/facebook/react/react-native-artifacts/0.71.0/react-native-artifacts-0.71.0-hermes-ios-debug.tar.gz
|
||||
|
||||
Reference in New Issue
Block a user