문제
처음 발생한 문제..
Unable to load contents of file list
Unable to open base configuration reference file
ci_scripts 에서 node 설치 및 pod install 등 세팅 후 발생한 문제..
Command PhaseScriptExecution failed with a nonzero exit code
Error: GetEnv.NoBoolean: TRUE is not a boolean.
xcodebuild-archive.log 에서 문제 확인.. 아티팩트에서 다운로드 받아서 확인해볼 것
2025-03-13T07:21:02.373872728Z Error: GetEnv.NoBoolean: TRUE is not a boolean.
2025-03-13T07:21:02.373875325Z Error: GetEnv.NoBoolean: TRUE is not a boolean.
2025-03-13T07:21:02.373879721Z at Object.boolish (/Volumes/workspace/repository/node_modules/getenv/index.js:70:15)
2025-03-13T07:21:02.373882796Z at /Volumes/workspace/repository/node_modules/getenv/index.js:84:27
2025-03-13T07:21:02.373886057Z at Env.CI (/Volumes/workspace/repository/node_modules/@expo/cli/src/utils/env.ts:41:19)
2025-03-13T07:21:02.373889392Z at exportEmbedAsync (/Volumes/workspace/repository/node_modules/@expo/cli/src/export/embed/exportEmbedAsync.ts:75:11)
2025-03-13T07:21:02.373893487Z at /Volumes/workspace/repository/node_modules/@expo/cli/src/export/embed/index.ts:106:12
2025-03-13T07:21:02.373897137Z Command PhaseScriptExecution failed with a nonzero exit code
Expo cli 에서 사용하는 getenv 패키지에서 TRUE를 boolish로 판별하지 못하여 생기는 문제인 듯 하다.
CI를 Xcode에서 대문자 TRUE로 설정하는 듯.
해결방법
1. Clean Build
yarn cache clean
rm -rf node_modules yarn.lock ios android
yarn
yarn expo prebuild
2. Patch 설정
프로젝트 루트에 patches/getenv+1.0.0.patch 파일 생성 (폴더 포함 없으면 새로 생성)
내용은 다음과 같다.
diff --git a/node_modules/getenv/index.js b/node_modules/getenv/index.js
index 5e83c8f..ae1efd3 100644
--- a/node_modules/getenv/index.js
+++ b/node_modules/getenv/index.js
@@ -54,7 +54,7 @@ const convert = {
return +value;
},
bool: function(value) {
- const isBool = value === 'true' || value === 'false';
+ const isBool = value === 'true' || value === 'false' || value === 'TRUE' || value === 'FALSE';
if (!isBool) {
throw new Error('GetEnv.NoBoolean: ' + value + ' is not a boolean.');
}
@@ -65,7 +65,7 @@ const convert = {
try {
return convert.bool(value);
} catch (err) {
- const isBool = value === '1' || value === '0';
+ const isBool = value === 'true' || value === 'false' || value === 'TRUE' || value === 'FALSE' || value === '1' || value === '0';
if (!isBool) {
throw new Error('GetEnv.NoBoolean: ' + value + ' is not a boolean.');
}
3. ci_post_clone.sh
프로젝트 루트/ios/ci_scripts/ci_post_clone.sh 파일 생성 (폴더 포함 없으면 새로 생성)
내용은 다음과 같다.
#!/bin/sh
set -e
echo "Running ci_post_clone.sh"
cd ../../
brew install node cocoapods yarn
yarn
yarn add patch-package
npx patch-package
# xcode cloud sets `CI` env var to 'TRUE':
# This causes a crash: Error: GetEnv.NoBoolean: TRUE is not a boolean.
# This is a workaround for that issue.
CI="true" npx expo prebuild
cd ./ios
pod install
결과
드디어..!
Reference
https://www.richinfante.com/2024/11/18/running-expo-prebuild-in-xcode-cloud
'프론트엔드' 카테고리의 다른 글
NodeJS 프로젝트 초기설정: ESLint + Prettier + Husky Git hook (0) | 2025.03.20 |
---|