Nate Petersen
Nate Petersen
I'm running into the same problem (M1 Max, 64 GB RAM). Interestingly, it works fine with 1.4 (the first model I installed). But I get this `plan_submit` error on 1.5...
We are having the same problem after updating to Xcode 16. The same fastlane script works with Xcode 15. Here is the end of the output from the working Xcode...
This is the exact command we are using: ```ruby gym( workspace: WORKSPACE_FILE, project: PROJECT_FILE, scheme: scheme, export_method: 'app-store', clean: true, export_options: { iCloudContainerEnvironment: 'Production', provisioningProfiles: PROVISIONING_PROFILES } ) ```
After fiddling with it some more, changing `gym` to `build_ios_app` also fixed the problem for us.
@drcbandreasen it ended up being a direct replacement for us. This is how we are calling it: ```ruby build_ios_app( workspace: WORKSPACE_FILE, project: PROJECT_FILE, scheme: scheme, export_method: 'app-store', clean: true, export_options:...
Just popping in to say I have the exact same problem as the OP. It would be great to have a way to silence these warnings when running unit tests....
@MarkDuckworth thanks for taking a look at this. Part of my concern is that it makes it harder to for me to compare my own data structures that use `Timestamp`....
Seems to relate to #12728.
Just to follow up on this, I ended up moving away from using `Timestamp` fields at all. Instead I created an `EpochTimestamp` struct that you can initialize with a `Date`,...