Go to file
Fedor Korotkov 8a0ae2f245
Ruby 2.7.0
2020-02-19 14:16:22 -05:00
scripts Enable Hyper Threading 2020-01-16 08:32:37 -05:00
templates Ruby 2.7.0 2020-02-19 14:16:22 -05:00
.gitignore install anka builder script 2018-04-16 13:58:47 -04:00
LICENSE Initial commit 2018-04-13 10:47:36 -04:00
README.md Upgrade to Catalina 2020-01-16 08:26:23 -05:00

README.md

osx-images

Packer templates to build macOS Anka images to use in CI:

  • catalina-base image has only brew pre-installed
  • catalina-xcode-11.3.1 image is based of catalina-base and has only Xcode 11.3.1 pre-installed
  • catalina-flutter image is based of catalina-xcode-11.3.1 and has only Flutter pre-installed

Building Base Image

First, run ./scripts/install-anka-builder.sh to install Anka builder for Packer.

To build the base image (you need to have /Applications/Install macOS Catalina.app/ installed from App Store):

packer build templates/catalina-base.json

We also need to add a port forwarding rule so VMs based of catalina-base image can be SSHable:

anka modify catalina-base add port-forwarding --host-port 0 --guest-port 22 --protocol tcp ssh

Building Xcode Images

To build an Xcode image (don't forget to setup FASTLANE_USER and FASTLANE_PASSWORD since they are required by xcode-install):

packer build -var xcode_version="11.3.1" templates/catalina-xcode.json