Skip to content

Commit

Permalink
Remove CircleCI references from gradle and android (facebook#49118)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#49118

We finished the migration away from CircleCI, so we are cleaning up the codebase.

This change updates references to CircleCI from gradle.

## Changelog:
[Internal] - Remove references from CircleCI in RNGP

Reviewed By: cortinico

Differential Revision: D69047484

fbshipit-source-id: 4ab40be62e6769eb3a8f65136464eed6628d47a4
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Feb 3, 2025
1 parent e0da0fe commit 6c6d341
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tasks.register("build") {
tasks.register("publishAllToMavenTempLocal") {
description = "Publish all the artifacts to be available inside a Maven Local repository on /tmp."
dependsOn(":packages:react-native:ReactAndroid:publishAllPublicationsToMavenTempLocalRepository")
// We don't publish the external-artifacts to Maven Local as CircleCI is using it via workspace.
// We don't publish the external-artifacts to Maven Local as ci is using it via workspace.
dependsOn(
":packages:react-native:ReactAndroid:hermes-engine:publishAllPublicationsToMavenTempLocalRepository")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ class PathUtilsTest {

@Test
fun getBuiltHermescFile_withOverride() {
assertThat(getBuiltHermescFile(tempFolder.root, "/home/circleci/hermes"))
.isEqualTo(File("/home/circleci/hermes/build/bin/hermesc"))
assertThat(getBuiltHermescFile(tempFolder.root, "/home/ci/hermes"))
.isEqualTo(File("/home/ci/hermes/build/bin/hermesc"))
}

@Test
Expand Down

0 comments on commit 6c6d341

Please sign in to comment.