├── .buildkite ├── build-base.sh ├── build-xcode.sh ├── get-macos-version.sh ├── hooks │ └── pre-exit └── pipeline.yml ├── .gitignore ├── Makefile ├── README.md ├── macos-10.12.json ├── macos-xcode-10.12.json └── scripts └── macos ├── homebrew.sh ├── ruby.sh └── xcode.sh /.buildkite/build-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/.buildkite/build-base.sh -------------------------------------------------------------------------------- /.buildkite/build-xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/.buildkite/build-xcode.sh -------------------------------------------------------------------------------- /.buildkite/get-macos-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/.buildkite/get-macos-version.sh -------------------------------------------------------------------------------- /.buildkite/hooks/pre-exit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | anka list | tail -n+5 | awk '/^\|/ {print $2}' 4 | # make delete-all 5 | -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/README.md -------------------------------------------------------------------------------- /macos-10.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/macos-10.12.json -------------------------------------------------------------------------------- /macos-xcode-10.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/macos-xcode-10.12.json -------------------------------------------------------------------------------- /scripts/macos/homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/scripts/macos/homebrew.sh -------------------------------------------------------------------------------- /scripts/macos/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/scripts/macos/ruby.sh -------------------------------------------------------------------------------- /scripts/macos/xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/anka-packer-images/HEAD/scripts/macos/xcode.sh --------------------------------------------------------------------------------