diff --git a/.circleci/config.yml b/.circleci/config.yml index 472596015..0248474b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,6 +67,20 @@ jobs: - run: python3 setup.py build --debug --verbose - 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: version: 2 @@ -77,3 +91,4 @@ workflows: - lin-35 - lin-37 - lin-bundle + - mac-brew