From: Paul Brossier Date: Mon, 1 Oct 2018 10:29:32 +0000 (+0200) Subject: .circleci/config.yml: add simple macos config X-Git-Tag: 0.4.8~92^2~21^2~5 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=538eadaa4c679af66ffde70924e185c6ea64738d;p=aubio.git .circleci/config.yml: add simple macos config --- diff --git a/.circleci/config.yml b/.circleci/config.yml index cff42b71..aecbfcd5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,6 +66,18 @@ jobs: - store_artifacts: path: dist/ + build-macos93: + macos: + xcode: "9.3.0" + steps: + - checkout + - run: *pip-install + - run: *build-wheel + - run: *install-wheel + - run: *test-nose2 + - store_artifacts: + path: dist/ + workflows: version: 2 @@ -74,3 +86,4 @@ workflows: - build-27 - build-36 - build-37 + - build-macos93