source: .circleci/config.yml @ a363759

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since a363759 was a363759, checked in by Paul Brossier <piem@piem.org>, 6 years ago

.circleci/config.yml: update install rule name

  • Property mode set to 100644
File size: 1.1 KB
Line 
1apt-run: &apt-install
2  name: Install apt packages
3  command: |
4    sudo apt-get update
5    sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev
6
7pip-install: &pip-install
8  name: Install pip dependencies
9  command: |
10    pip install --user -r requirements.txt
11
12build-wheel: &build-wheel
13  name: Build python wheel
14  command: |
15    pip wheel -v -v -v --wheel-dir=dist .
16
17install-wheel: &install-wheel
18  name: Install python wheel
19  command: |
20    pip install --user dist/aubio*.whl
21
22test-nose2: &test-nose2
23  name: Test python wheel
24  command: |
25    make create_test_sounds
26    PATH=/home/circleci/.local/bin:$PATH nose2 -v
27
28version: 2
29jobs:
30  build:
31    docker:
32      - image: circleci/python:2.7
33      - image: circleci/python:3.6
34    steps:
35      - checkout
36      - run: *apt-install
37      - run: *pip-install
38      - run: *build-wheel
39      - run: *install-wheel
40      - run: *test-nose2
41      - store_artifacts:
42          path: dist/
43
44workflows:
45  version: 2
46
47  test-wheel:
48    jobs:
49      - build
Note: See TracBrowser for help on using the repository browser.