Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/local-build-plugin/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export async function buildAsync(job: BuildJob, metadata: Metadata): Promise<voi
EAS_BUILD_ANDROID_VERSION_NAME: job.version?.versionName,
}),
...(job.platform === Platform.IOS && {
COCOAPODS_PARALLEL_CODE_SIGN: 'true',
EAS_BUILD_IOS_BUILD_NUMBER: job.version?.buildNumber,
EAS_BUILD_IOS_APP_VERSION: job.version?.appVersion,
}),
Expand Down
1 change: 1 addition & 0 deletions packages/worker/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export function getBuildEnv({
if (runnerPlatform === Platform.IOS) {
setEnv(env, 'EAS_BUILD_COCOAPODS_CACHE_URL', config.cocoapodsCacheUrl);
setEnv(env, 'COMPILER_INDEX_STORE_ENABLE', 'NO');
setEnv(env, 'COCOAPODS_PARALLEL_CODE_SIGN', 'true');

if (job.builderEnvironment?.env?.EAS_USE_CACHE === '1') {
setEnv(env, 'USE_CCACHE', '1');
Expand Down
Loading