Skip to content

Commit 68ac9cf

Browse files
authored
Merge pull request #5 from RDIL/patch-1
Add cmake and gcc to mojave images
2 parents 1ff03bf + 05dc23a commit 68ac9cf

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# osx-images
22

3-
Packer templates to build [Mac OS Anka images](https://veertu.com/anka-technology/) to use in CI:
3+
Packer templates to build [macOS Anka images](https://veertu.com/anka-technology/) to use in CI:
44

55
* `mojave-base` image has only `brew` pre-installed
66
* `mojave-xcode-10.0` image is based of `mojave-base` and has only `Xcode 10.0` pre-installed
@@ -28,4 +28,4 @@ To build an Xcode image (don't forget to setup `FASTLANE_USER` and `FASTLANE_PAS
2828

2929
```bash
3030
packer build -var xcode_version="10.1" templates/mojave-xcode.json
31-
```
31+
```

templates/mojave-base.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@
4040
"brew install wget"
4141
],
4242
"type": "shell"
43+
},
44+
{
45+
"inline": [
46+
"brew install cmake",
47+
"brew install gcc"
48+
],
49+
"type": "shell"
4350
}
4451
]
45-
}
52+
}

templates/mojave-xcode.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@
6161
"type": "shell"
6262
}
6363
]
64-
}
64+
}

0 commit comments

Comments
 (0)