.circleci/config.yml: add simple macos config
authorPaul Brossier <piem@piem.org>
Mon, 1 Oct 2018 10:29:32 +0000 (12:29 +0200)
committerPaul Brossier <piem@piem.org>
Mon, 1 Oct 2018 10:29:32 +0000 (12:29 +0200)
.circleci/config.yml

index cff42b7..aecbfcd 100644 (file)
@@ -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