From c623cd5d01a8a3999847b8796fda6d585e236cdc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 27 Jan 2019 09:21:02 +0530 Subject: [PATCH] Add a brew build to CircleCI --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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