Add a brew build to CircleCI

This commit is contained in:
Kovid Goyal 2019-01-27 09:21:02 +05:30
parent 3126f31cbf
commit c623cd5d01
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -67,6 +67,20 @@ jobs:
- run: python3 setup.py build --debug --verbose - run: python3 setup.py build --debug --verbose
- run: python3 test.py - run: python3 test.py
mac-brew:
macos:
xcode: "10.1.0"
environment:
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
steps:
- checkout
- run: brew bundle
- run: python3 logo/make.py
- run: python3 setup.py build --debug --verbose
- run: python3 test.py
- run: python3 setup.py osx-bundle
workflows: workflows:
version: 2 version: 2
@ -77,3 +91,4 @@ workflows:
- lin-35 - lin-35
- lin-37 - lin-37
- lin-bundle - lin-bundle
- mac-brew