From 52215b7749de6d8b84a26f3c7af8cc47eec1ecee Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Fri, 14 Oct 2022 14:57:49 -0300 Subject: [PATCH] CI Build fix (#6685) * use xcode 14.0.0 in ci * update jvmargs to use 2048m --- .circleci/config.yml | 2 +- android/gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1e7d46db16..b63f6ab54f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,7 @@ executors: NODE_ENV: production BABEL_ENV: production macos: - xcode: "14.0.1" + xcode: "14.0.0" working_directory: ~/mattermost-mobile shell: /bin/bash --login -o pipefail resource_class: <> diff --git a/android/gradle.properties b/android/gradle.properties index 5bb2974a34..7b404d8c1e 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -10,7 +10,7 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m -org.gradle.jvmargs=-Xmx1024m -XX:MaxMetaspaceSize=512m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit