-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors when upgrading to XCode 11.4 #13
Comments
Looks like specifying
I tried overriding the
|
Hey @evanb2! Appreciate the detail, and sorry you're having trouble with it. We're using the following executors in a recent project and things seem to be working ok: executors:
node:
docker:
- image: circleci/node:10.16.0-stretch
environment:
TERM: xterm
android:
docker:
- image: circleci/android:api-28-node
environment:
- _JAVA_OPTIONS: '-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap'
- GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-XX:+UnlockExperimentalVMOptions -XX:+HeapDumpOnOutOfMemoryError"'
- BUILD_THREADS: 2
- FL_OUTPUT_DIR: output
ios:
macos:
xcode: 11.3.1
shell: /bin/bash --login -o pipefail
resource_class: 'medium' We'll take a look into this. |
Apple is requiring all apps to be built using iOS SDK 13+ starting June 30th, which requires XCode
11.X
. The default XCode image for this Orb is currently10.1
. Manually setting the ios executor is throwing an error when building in CI.My project's
config.yml
:Error in CI:
Detailed error in the logs:
This seems to be caused by using
yarn
instead ofnpm
in CI.The
yarn install
step shows the following error:Using
npm install
succeeded with no errors.npm
?The text was updated successfully, but these errors were encountered: