Skip to content

Commit 9e49b37

Browse files
cortinicometa-codesync[bot]
authored andcommitted
Set LC_ALL: C.UTF8 to further jobs to unblock nightly (#55564)
Summary: This reapplies the same changes from #55453 to further jobs that were missing it. This should unblock nightlies that are currently failing. ## Changelog: [INTERNAL] - Pull Request resolved: #55564 Test Plan: CI Reviewed By: cipolleschi Differential Revision: D93408173 Pulled By: cortinico fbshipit-source-id: 11823daeb8ef95fb5b9b8942f23f33353b6d6b6b
1 parent 3f200a2 commit 9e49b37

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
image: reactnativecommunity/react-native-android:latest
4343
env:
4444
TERM: "dumb"
45+
# Set the encoding to resolve a known character encoding issue with decompressing tar.gz files in containers
46+
# via Gradle: https://github.com/gradle/gradle/issues/23391#issuecomment-1878979127
47+
LC_ALL: C.UTF8
4548
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
4649
ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }}
4750
ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_KEY }}
@@ -70,6 +73,9 @@ jobs:
7073
env:
7174
TERM: "dumb"
7275
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
76+
# Set the encoding to resolve a known character encoding issue with decompressing tar.gz files in containers
77+
# via Gradle: https://github.com/gradle/gradle/issues/23391#issuecomment-1878979127
78+
LC_ALL: C.UTF8
7379
# By default we only build ARM64 to save time/resources. For release/nightlies, we override this value to build all archs.
7480
ORG_GRADLE_PROJECT_reactNativeArchitectures: "arm64-v8a"
7581
env:

.github/workflows/publish-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ jobs:
6363
image: reactnativecommunity/react-native-android:latest
6464
env:
6565
TERM: "dumb"
66+
# Set the encoding to resolve a known character encoding issue with decompressing tar.gz files in containers
67+
# via Gradle: https://github.com/gradle/gradle/issues/23391#issuecomment-1878979127
68+
LC_ALL: C.UTF8
6669
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
6770
# By default we only build ARM64 to save time/resources. For release/nightlies, we override this value to build all archs.
6871
ORG_GRADLE_PROJECT_reactNativeArchitectures: "arm64-v8a"

.github/workflows/test-all.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,9 @@ jobs:
429429
image: reactnativecommunity/react-native-android:latest
430430
env:
431431
TERM: "dumb"
432+
# Set the encoding to resolve a known character encoding issue with decompressing tar.gz files in containers
433+
# via Gradle: https://github.com/gradle/gradle/issues/23391#issuecomment-1878979127
434+
LC_ALL: C.UTF8
432435
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
433436
steps:
434437
- name: Checkout

0 commit comments

Comments
 (0)