shithub: aubio

Download patch

ref: c9701ffcdc09194f88e53308e039d075c365b661
parent: a36375999da1564134d874ee4e05747188064db1
author: Paul Brossier <piem@piem.org>
date: Wed Sep 26 08:00:58 EDT 2018

.circleci/config.yml: split images

--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -28,8 +28,20 @@
 version: 2
 jobs:
   build:
-    docker:
+    docker-27:
       - image: circleci/python:2.7
+    steps:
+      - checkout
+      - run: *apt-install
+      - run: *pip-install
+      - run: *build-wheel
+      - run: *install-wheel
+      - run: *test-nose2
+      - store_artifacts:
+          path: dist/
+
+  build-36:
+    docker:
       - image: circleci/python:3.6
     steps:
       - checkout
@@ -46,4 +58,5 @@
 
   test-wheel:
     jobs:
-      - build
+      - build-27
+      - build-36