Skip to content

Commit b3f873b

Browse files
committed
Beginning support for MacOS 10.13 (High Sierra) (#36)
This change facilitates stable testing of this role against MacOS 10.13, which as of this change, is the most recent OS X version. Addendum: Use Ansible 2.5.4 as most recent Ansible version in CI
1 parent 6897d5b commit b3f873b

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ matrix:
55
include:
66
- os: osx
77
osx_image: xcode9.3
8-
env: ANSIBLE_VERSION=2.5.3
8+
env: ANSIBLE_VERSION=2.5.4
99
- os: osx
1010
osx_image: xcode9.3
1111
env: ANSIBLE_VERSION=2.4.4.0
@@ -17,16 +17,16 @@ matrix:
1717
env: ANSIBLE_VERSION=2.2.3.0
1818
- os: osx
1919
osx_image: xcode9.2
20-
env: ANSIBLE_VERSION=2.5.3
20+
env: ANSIBLE_VERSION=2.5.4
2121
- os: osx
2222
osx_image: xcode8.3
23-
env: ANSIBLE_VERSION=2.5.3
23+
env: ANSIBLE_VERSION=2.5.4
2424
- os: osx
2525
osx_image: xcode7.3
26-
env: ANSIBLE_VERSION=2.5.3
26+
env: ANSIBLE_VERSION=2.5.4
2727
- os: osx
2828
osx_image: xcode6.4
29-
env: ANSIBLE_VERSION=2.5.3
29+
env: ANSIBLE_VERSION=2.5.4
3030

3131
branches:
3232
only:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pip install --no-deps -r tests/test-requirements.txt
4343
```
4444

4545
Run the full lifecycle test on a given `<PLATFORM>`. Allowed values for
46-
`<PLATFORM>` are `sierra`, `elcapitan`, and `yosemite`.
46+
`<PLATFORM>` are `highsierra`, `sierra`, `elcapitan`, and `yosemite`.
4747

4848
```bash
4949
source molecule/<PLATFORM>.sh

molecule/default/molecule.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ platforms:
1313
box_version: ${MOLECULE_BOX_VERSION}
1414
memory: 2048
1515
cpus: 4
16+
config_options:
17+
synced_folder: false
18+
boot_timeout: 300
1619
provisioner:
1720
name: ansible
1821
playbooks:

molecule/highsierra.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export MOLECULE_NAME=highsierra
2+
export MOLECULE_BOX=monsenso/macos-10.13
3+
export MOLECULE_BOX_VERSION=1.1.0

0 commit comments

Comments
 (0)