Nikolay Edigaryev
Nikolay Edigaryev
Unfortunately, I wasn't able to reproduce your example: https://cirrus-ci.com/task/5442098164924416. Here's a full `.cirrus.yml`: ```yaml env: CODECOV_OS: macos task: macos_instance: image: monterey-base codecov_uploader_cache: folder: codecov fingerprint_script: - curl -Os https://uploader.codecov.io/latest/${CODECOV_OS}/codecov.SHA256SUM populate_script:...
Have you tried clearing caches on `master`/`main`? It seems that you're using a custom cache fingerprint, which may result in re-using of an older cache entry (if any) without `chmod...
https://developer.apple.com/documentation/virtualization/audio says: >If your app can configure an audio input device, you must set an [NSMicrophoneUsageDescription](https://developer.apple.com/documentation/bundleresources/information_property_list/nsmicrophoneusagedescription) message in your app’s Info.plist. The system uses this description when asking the user’s...
Could you please try setting the `create_grace_time = "30s"` option in your `.pkr.hcl`? We've had the same issue when building our macOS image templates, and [this workaround](https://github.com/cirruslabs/macos-image-templates/blob/57a0eb2d3027e6a2a5967c7586b1c4982815ac67/templates/vanilla-ventura.pkr.hcl#L86-L88) did the job.
> I don't quite understand why. Because there's no SSH when the VM is running in the recovery mode, and thus no provisioning capability If we were to run the...
Took a look at this, and it seems that some refactoring will be needed first to pack this change in a concise PR. Namely, we have two places where a...
This is likely caused by this branch of code: https://github.com/cirruslabs/packer-plugin-tart/blob/9ddd019ddc45e851a734e0b8da83adc786fcfd65/builder/tart/step_run.go#L124-L134 If you use `http_directory` or `http_content`, we need to figure out the IP-address on which the VM will be able...
> and the whole VM just hangs for 18 minutes so far: This is probably because the interface with `192.168.64.1` address doesn't exist yet at the time of [HTTP server...
Regarding the root cause, do I understand correctly that even if you increase the `GRUB_TIMEOUT` in your Ubuntu autoinstall configuration, the VM will only get it's IP address via DHCP...
> Looks like there were two merged pull requests, so I wonder if this was already fixed or if more work is needed? This is indeed already fixed, thanks for...