From: Paul Brossier Date: Wed, 26 Sep 2018 10:00:58 +0000 (+0200) Subject: .circleci/config.yml: split images X-Git-Tag: 0.4.8~92^2~21^2~8 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c9701ffcdc09194f88e53308e039d075c365b661;p=aubio.git .circleci/config.yml: split images --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 4dd19823..5ed6c5f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,8 +28,20 @@ test-nose2: &test-nose2 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 @@ workflows: test-wheel: jobs: - - build + - build-27 + - build-36